是否可以运行通知,例如
-(void) testMethod
{
[[NSNotificationQueue defaultQueue] enqueueNotification:[NSNotification notificationWithName:@"TEST123" object:self userInfo:parms]postingStyle:NSPostNow coalesceMask:NSNotificationNoCoalescing forModes:nil];
NSLog(@"test123");
//.....
以便“-(void)testMethod”继续执行 NSLog,...,而通知调用的方法确实完成了。有没有办法解决它,没有线程?