2011-09-22 74 views

回答

1

最好的方法是,在应用程序委托的方法来处理移除通知,发送使用NSNotificationCenter

[[NSNotificationCenter defaultCenter] postNotification:@"remoteNotification" withObject:whateverYouWantHere]; 

然后使用NSNotificationCenter添加任何通知感兴趣的UIViewController作为“remoteNotification”名称的观察者。

相关问题