Sometimes, it is very annoying to remove the app from the device/simulator, especially when you have saved data and configuration.
To solve this issue, for every ViewController
for which you removed the .xib
, file add the following code:
-(NSString*) nibName
{
return nil;
}