假设您将计时器附加到特定线程中的runloop,但线程已在计时器被触发之前退出,导致该方法无法执行。这种情况可能吗?
答案 0 :(得分:3)
当然这是可能的,并且很容易证明。
#import <Foundation/Foundation.h>
#define TIMER_INTERVAL 2.0
@interface Needle : NSObject
- (void)sew;
- (void)tick:(NSTimer *)tim;
@end
@implementation Needle
{
NSTimer * tim;
}
- (void)sew
{
@autoreleasepool{
tim = [NSTimer scheduledTimerWithTimeInterval:TIMER_INTERVAL
target:self
selector:@selector(tick:)
userInfo:nil
repeats:NO];
while( ![[NSThread currentThread] isCancelled] ){
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.5]];
}
}
}
- (void)tick:(NSTimer *)timer
{
NSLog(@"Let's get the bacon delivered!");
[[NSThread currentThread] cancel];
}
@end
int main(int argc, const char * argv[])
{
@autoreleasepool {
Needle * needle = [Needle new];
NSThread * thread = [[NSThread alloc] initWithTarget:needle
selector:@selector(sew)
object:nil];
[thread start];
// Change this to "+ 1" to see the timer fire.
NSTimeInterval interval = TIMER_INTERVAL - 1;
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:interval]];
[thread cancel];
}
return 0;
}
答案 1 :(得分:0)
是的,除非你在主线程上,否则没有NSRunLoop
使线程保持活动状态并且定时器可以附加到。你需要创建一个让它运行。
答案 2 :(得分:0)
是的。这很容易发生,如果有一个计时器,但应用程序“过早地”退出。在这种情况下,计时器的开火日期将会丢失 - 即使应用程序在之前设置的计时器发布日期之前重新启动也是如此。