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 to change self.view.frame to self.view.bounce when you add imageView into self.view.
UIImageView *imageView = [[UIImageView alloc] initWithFrame:self.view.frame];
Or just use CGRectMake(0,0,320,568)