说好只能跑 5 秒的,我就试了下,没想到根本停不下来,附代码:
- (void)applicationDidEnterBackground:(UIApplication *)application {
NSLog(@"%@",NSStringFromSelector(_cmd));
while (YES) {
static int count=0;
count++;
[NSThread sleepForTimeInterval:1];
NSLog(@"sleeping %d",count); //wtf it can run forever?
}
}
按了 home 键之后一直打印到 80 几了还在跑,是不是有什么地方写错了……
- (void)applicationDidEnterBackground:(UIApplication *)application {
NSLog(@"%@",NSStringFromSelector(_cmd));
while (YES) {
static int count=0;
count++;
[NSThread sleepForTimeInterval:1];
NSLog(@"sleeping %d",count); //wtf it can run forever?
}
}
按了 home 键之后一直打印到 80 几了还在跑,是不是有什么地方写错了……