If i do
[[NSNotificationCenter defaultCenter] postNotificationName:@"N" object:self];
NSLog(@"here");
The observer is notified synchronously before NSLog(@"here");
is executed... if all objects are on the same thread, is this guaranteed to be executed synchronously (immediately)?
Cannot find this to be explicitly stated