Use NSNotificationCenter selector for one observer in multiple view controllers
Can I use the selector getUpdate: in multiple view controllers? I'm registering my LevelViewController as an observer for both GameViewController and WinViewController . The latter 2 view controllers both have a back button (which, when pressed, pops you back to LevelVC ), and the idea with the notification is to tell LevelVC whether or not to update the collection view cells (via the viewWillAppear: method) when the back button is pressed. In viewWillAppear: , I wouldn't want to call two separate methods (one from GameVC and one from WinVC ) in order to get my update, I just one fluid method