I have a project that was built last year, and it uses XIBs, no storyboards. The XIBs do not use Auto Layout, but they do use some Autosizing. I have an issue when running
- (void)viewDidAppear:(BOOL)animated { [self.view setFrame:CGRectMake(0, 20, self.view.frame.size.width, self.view.frame.size.height)]; // OR self.view.transform = CGAffineTransformMakeTranslation(0, 20); }