有可能performSelector:withObject:afterDelay:
在子线程中不起作用吗?
我对 Objective c 和 Xcode 还是很陌生,所以也许我错过了一些明显的东西......:/我真的很感激一些帮助。
我要做的就是显示一个信息标签 3 秒钟,然后将其隐藏。如果设置了新信息,则应取消在 3 秒后隐藏标签的线程。(我不希望通过旧线程隐藏新信息。)
源代码:
- (void) setInfoLabel: (NSString*) labelText
{
// ... update label with text ...
infoLabel.hidden = NO;
if(appDelegate.infoThread != nil) [appDelegate.infoThread cancel]; // cancel last hide-thread, if it exists
NSThread *newThread = [[NSThread alloc] initWithTarget: self selector:@selector(setInfoLabelTimer) object: nil];// create new thread
appDelegate.infoThread = newThread; // save reference
[newThread start]; // start thread
[self performSelector:@selector(testY) withObject: nil afterDelay:1.0];
}
-(void) setInfoLabelTimer
{
NSLog(@"setInfoLabelTimer");
[self performSelector:@selector(testX) withObject: nil afterDelay:1.0];
[self performSelector:@selector(hideInfoLabel) withObject: nil afterDelay:3.0];
NSLog(@"Done?");
}
-(void) testX
{
NSLog(@"testX testX testX testX testX");
}
-(void) testY
{
NSLog(@"testY testY testY testY testY");
}
-(void) hideInfoLabel
{
NSLog(@"f hideInfoLabel");
if(!([[NSThread currentThread] isCancelled])) {
AppDelegate *appDelegate = (AppDelegate *) [[UIApplication sharedApplication] delegate];
appDelegate.infoThread = nil;
appDelegate.infoLabel.hidden = YES;
[NSThread exit];
}
}
控制台输出:
- 设置信息标签定时器
- 完毕?
- 测试Y 测试Y 测试Y 测试Y 测试Y
正如您所看到的那样performSelector:withObject:afterDelay:
工作(--->“testY testY testY testY testY”),但不在子线程中(运行(--->“setInfoLabelTimer”和“Done?”))
有谁知道为什么performSelector:withObject:afterDelay
:在子线程中不起作用?(或者我的错是什么?:()
最好的问候,茶壶