I avoid completely using NIB. I have problems with iOS 7.1, but not on iOS 8.x.
iOS 7 vs. iOS 8


The code looks like this: UIResponder <UIApplicationDelegate>
- (void) setupViewController { CGRect frame = UIScreen.mainScreen.bounds; self.window = [[UIWindow alloc] initWithFrame:frame]; self.window.backgroundColor = UIColor.whiteColor;
I also tried some methods of working with iOS 8, but even setting UIWindow frame to 5000, 5000 give the same results.
[I saw a number of related questions and tried out the suggestions, but to no avail, including switching borders, if it's iOS 8, etc. etc.]
source share