NSNotification not calling the selector
问题 I am creating a NSNotification in appDelegate . - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(checkRegister:) name:@"checkRegister" object:nil]; return YES; } -(void)checkRegister:(NSNotification *) notification{ //Some code } And I am posting notification in some other class: -(void)connectionDidFinishLoading:(NSURLConnection *)connection { NSLog(@"DONE.