我在应用程序中有两种方法,viewDidLoad
我希望如果调用通知方法,则不应调用另一种方法。
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(actionNotificationDataA:)
name:@"reloadDataActivity"
object:nil];
下面是另一种方法。我希望如果没有调用通知方法,那么应该调用这个方法:
[NSThread detachNewThreadSelector:@selector(allData:) toTarget:self withObject:nil];
否则,不应调用此方法。