I am trying to post a notification in NSDistribtedNotificationCenter but I get these messages in console:
3/22/11 10:26:53 PM AIM[138] * Attempt to post a distributed notification (AIMIncomingMessages) with a non-dictionary userInfo (or one which is not a valid property list) ignored.
What does this mean?
EDIT: Here's the code:
[[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];