我似乎不知道如何发布带有对象和发件人的通知。
我可以发布带有姓名、发件人和用户信息的通知。看:
- (void)postNotificationName:(NSString *)notificationName
object:(id)notificationSender
userInfo:(NSDictionary *)userInfo
我可以发布一个带有对象的 NSNotification,但不能将发件人链接到它:
NSNotification *notification = [NSNotification notificationWithName:name
object:someObject];
[[NSNotificationCenter defaultCenter] postNotification:notification];
谁能告诉我如何发布带有(a)对象和(b)发件人参考的通知?