ios - Terminating app due to uncaught exception reason: 'Application windows are expected to have a root view controller at the end of application launch' -
feedcontentvc *feedvc= [[feedcontentvc alloc] initwithnibname:@"feedcontentvc" bundle:nil]; navigationcontroller = [[uinavigationcontroller alloc] initwithrootviewcontroller:feedvc]; navigationcontroller.navigationbar.barstyle = uibarstyleblack; [window setrootviewcontroller:navigationcontroller];
although things looks correct in doing, please confirm following:
window
strong property inappdelegate
. should[self.window setrootviewcontroller:navigationcontroller]
.- put breakpoint , check
feedvc
not nil. - you have statement in code
[self.window makekeyandvisible];
.
Comments
Post a Comment