我正在使用AsyncSocket从我的iPhone应用程序连接到服务器。在从服务器接收数据的委托中,我发布了一个通知,告诉tableView的委托在tableView上触发reloadData:
- (void)onSocket:(AsyncSocket *)sock didReadData:(NSData*)data withTag:(long)tag {
[[NSNotificationCenter defaultCenter] postNotificationName:@"PEERSTATUSCHANGED" object:self];
[sock readDataToData:[AsyncSocket CRLFData] withTimeout:-1 tag:0];
}
并在viewController上:
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(peerStatusDidChange:) name:@"PEERSTATUSCHANGED" object:nil];
}
return self;
}
- (void)peerStatusDidChange:(NSNotification *)notification {
NSLog(@"NOTIFICATION RECEIVED");
}
现在,这根本不起作用。通知是由ViewController提出但无法识别的。但是,当我在applicationDidFinishLaunching中执行相同的操作时:
- (void)applicationDidFinishLaunching:(UIApplication *)application {
protocol = [[XBBProtocol alloc] init];
SourceListViewController *sourceListVC = [[[SourceListViewController alloc] initWithNibName:@"SourceListViewController" bundle:nil] autorelease];
UINavigationController *navigationController = [[[UINavigationController alloc] initWithRootViewController:sourceListVC] autorelease];
[[NSNotificationCenter defaultCenter] postNotificationName:@"PEERSTATUSCHANGED" object:self];
[protocol connectToServer];
// Override point for customization after application launch
[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
}
我收到了viewController收到的通知。
任何人都知道为什么?它是否与AsyncSocket的委托方法在不同的线程中有关?
提前致谢。
答案 0 :(得分:1)
一种可能性是您的initWithNibName:bundle:
方法实际上并未被调用。如果您在NIB(而不是代码)中实例化视图控制器,那么它会调用initWithCoder:
。
快速检查方法是在initWithNibName:bundle:
中添加断点。
答案 1 :(得分:1)
尝试以不同的方法放置发送通知的方法,并使用“performSelectorOnMainThread”调用它。您的网络代码很可能在后台线程中被调用,因此当通知触发时,它会通知同一线程上的表视图...
除主线程外,您无法进行任何UI调用。