-(void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];
//Reset all NSUserDefaults values
}
My app was previously working fine in iOS 7 but after upgraded to iOS 8, it is no longer working.
This is happening in my parent VC where user is required to select some option in another (child) VC which transit via "Partial Curl". In iOS 8, seems like all my options are not saved in child VC anymore when I transit back to my parent VC.
FYI I store my options selection in child VC inside NSUserDefaults and access them again in parent VC.