I\'m adding a UIImageView to the UIViewController\'s UIView as I would normally, with the frame of the image view being the same as self.view to make sure that the
self.view
Try UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.view.bounds]; isntead. Using bounds instead of frame
*imageView = [[UIImageView alloc] initWithFrame:self.view.bounds];
bounds
frame