- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
要每x秒重复一次方法调用(或消息发送,我猜合适的术语是),最好使用NSTimer(NSTimer的scheduledTimerWithTimeInterval:target:selector:userInfo:repeats: )或者让该方法在最后递归地调用自身(使用performSelector:withObject:afterDelay)?后者不使用对象,但可能不太清晰/可读?另外,只是为了让您了解我在做什么,它只是一个带有标签的 View ,该标签倒计时到午夜 12:00,当它达到 0 时,它会闪烁时间 (00:00:00)并永远播放嘟嘟声。
谢谢。
编辑:另外,重复播放 SystemSoundID(永远)的最佳方式是什么?编辑:我最终用它来永远播放 SystemSoundID:
// Utilities.h
#import <Foundation/Foundation.h>
#import <AudioToolbox/AudioServices.h>
static void soundCompleted(SystemSoundID soundID, void *myself);
@interface Utilities : NSObject {
}
+ (SystemSoundID)createSystemSoundIDFromFile:(NSString *)fileName ofType:(NSString *)type;
+ (void)playAndRepeatSystemSoundID:(SystemSoundID)soundID;
+ (void)stopPlayingAndDisposeSystemSoundID;
@end
// Utilities.m
#import "Utilities.h"
static BOOL play;
static void soundCompleted(SystemSoundID soundID, void *interval) {
if(play) {
[NSThread sleepForTimeInterval:(NSTimeInterval)interval];
AudioServicesPlaySystemSound(soundID);
} else {
AudioServicesRemoveSystemSoundCompletion(soundID);
AudioServicesDisposeSystemSoundID(soundID);
}
}
@implementation Utilities
+ (SystemSoundID)createSystemSoundIDFromFile:(NSString *)fileName ofType:(NSString *)type {
NSString *path = [[NSBundle mainBundle] pathForResource:fileName ofType:type];
SystemSoundID soundID;
NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];
AudioServicesCreateSystemSoundID((CFURLRef)filePath, &soundID);
return soundID;
}
+ (void)playAndRepeatSystemSoundID:(SystemSoundID)soundID interval:(NSTimeInterval)interval {
play = YES
AudioServicesAddSystemSoundCompletion(soundID, NULL, NULL,
soundCompleted, (void *)interval);
AudioServicesPlaySystemSound(soundID);
}
+ (void)stopPlayingAndDisposeSystemSoundID {
play = NO
}
@end
似乎工作正常..对于闪烁的标签,我想我会使用 NSTimer。
最佳答案
计时器更适合严格定义的时间间隔。如果您的函数调用本身有延迟,您将失去准确性,因为它没有真正同步到时间间隔。运行实际方法本身总是需要时间,这会导致间隔消失。
我想说,坚持使用 NSTimer。
关于iPhone 开发者--performSelector :withObject:afterDelay or NSTimer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1490028/
这是我的代码。 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; button.frame = CGRe
它们似乎执行相当相似的任务:启动一个新线程来快速轻松地执行该选择器。但有什么区别吗?也许与内存管理有关? 最佳答案 两者是相同的。 在 iOS 和 Mac OS X v10.5 及更高版本中,所有对象
通过使用 Xcode 5 并启用自动引用计数。 在基于非 NavigationController 的应用程序中,我使用了一个 UIButton,并且正确定义和连接了 IBAction 和 IBOut
我刚刚在 Three20 中看到一些代码,如下所示: SEL sel = @selector(textField:didAddCellAtIndex:); if ([self.delegate
所以我想做的是我有一个 NSMutableArray 数据需要传递给另一个 UITableViewController。这个 NSMutableArray 是一个 NSDictionaries 数组,
我想做performSelector:withObject:,但对象是CGFloat。所以它实际上不是一个对象。我怎样才能做到这一点? 我正在执行选择器的对象不是我的,我无法修改它。 例如 [xyz
我有一个按钮,如果密码正确,我想在触发 segue 之前使用密码实现。当您输入错误的密码时,一切看起来都很好,我已经实现了另一个alertView来告诉用户密码是错误的。 当警报 View 弹出并在延
如题。调用 performSelector:withObject:afterDelay 后需要调用 NSAutoReleasePool 吗? 我觉得performSelector:withObject
我有一个 View Controller ,它调用performSelector:withObject:afterDelay。但是,如果我在调用此方法后立即删除该 View Controller ,那
我正在尝试使用这段代码在 NSMutableArray 中分配对象 - (IBAction)variablePressed:(UIButton *)sender { NSString *variabl
我正在尝试使用这段代码在 NSMutableArray 中分配对象 - (IBAction)variablePressed:(UIButton *)sender { NSString *variabl
我有一个可变数组,最初我在使用范围时遇到了问题。我得到了一些关于如何解决这个问题的建议(这很有效),但现在数组不会替换给定索引处的对象。 这是代码: .h 文件: @interface myViewC
我已经设置了一个块以在不同的队列上运行,并在延迟后调用另一个方法: piemanQ = dispatch_queue_create(PIEMAN_QUEUE_NAME, NULL); dispatch
我不理解代码中的某些行为。我在 .m 文件的顶部定义了一个枚举: typedef NS_ENUM (NSInteger, connectionState) { tryingToConnect, con
我的 iOS 应用程序中有一个异步服务器请求: [self performSelectorInBackground:@selector(doSomething) withObject:nil]; 如何
我想在后台线程中运行一个方法,第一个方法将在几秒钟后在同一(后台)线程上运行另一个方法。我写了这个: - (IBAction)lauch:(id)sender { [self performS
这是一个已经在 SO 中回答的问题,但我无法在任何地方的 Apple 文档中找到它。你能给我指出正确的方向吗? 在以下主题中 Do I have to retain an object before
我在释放一个对象时遇到了 EXC_BAD_ACCESS,该对象具有很少的 performSelector:withObject:afterDelay,其中选择器方法正在调用另一个对象,而我正在释放该对
这个问题在这里已经有了答案: dispatch_after - GCD in Swift? (26 个回答) 关闭8年前。 我有一个 Objective-C 中的应用程序,我正在过渡到 Swift。在
我的问题是,在我的应用程序中的某个时刻,我调用 [performSelector: withObject: afterDelay:] 但在长达 1 秒的延迟期间,会发生一些事情来决定是否延迟方法应该或
我是一名优秀的程序员,十分优秀!