我想在 View 消失时停止调用循环函数。我怎样才能做到这一点?这是我的代码:
-(void) viewWillAppear:(BOOL)animated
{
[self performSelectorInBackground:@selector(updateArray) withObject:nil];
}
和 :
-(void)updateArray
{
while (1)
{
NSLog(@"IN LOOP");
[NSThread sleepForTimeInterval:2.0];
....}
updateArray 通常在此视图消失时调用。我想停止调用 updateArray 函数
提前致谢