I'm developing an iOS application with latest SDK and XCode.
I have a configuration screen and I need to save settings before user comes back to previous screen. This viewcontroller is called SettingsViewController.
I'm using a Navigation Controller on a Storyboard and I need to detect when user taps on Back button.
I could add this code on - (void)viewWillDisappear:(BOOL)animated. What do you think?
How can I detect when user taps on back button on SettingsViewController?
viewWillDisappear:method ... – The Tiger Dec 11 '12 at 10:07