我正在尝试在 NSDistribtedNotificationCenter 中发布通知,但我在控制台中收到这些消息:
2011 年 3 月 22 日晚上 10:26:53 AIM[138] *尝试发布分布式通知 (AIMIncomingMessages),其中忽略了非字典 userInfo(或无效属性列表)。
这是什么意思?
编辑:这是代码:
[[NSDistributedNotificationCenter defaultCenter] postNotificationName:@"AIMIncomingMessages"
object:nil
userInfo:[NSDictionary dictionaryWithObjectsAndKeys:
@"Event Source", [NSNumber numberWithInt:3],
@"Message:", [arg2 attributedString],
@"Username:", [arg3 name],
@"Timestamp:", [NSDate date],
nil]
deliverImmediately: YES];