I am creating a simple iOS app, and everything has been going fine until one error and the simulator crashed. I removed the error, yet the program continues to crash, halting at these two breakpoints:
//in my view controller's 'initWithNibName'
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
and
//in my AppDelegate's 'didFinishLaunchingWithOptions'
RSViewController *newView = [[RSViewController alloc]init];
I have tried everything, even deleted and recreating the xib files. The only thing that seems to work is literally rewriting it in a new project with the code. Is there a way around this? This is literally the 5th time i have had to do this and I'm getting very frustrated. :(
Thanks!