if, having exceeded UIView, you mean to draw its background with an image, this can be done as follows:
someView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"yourImage.png"]];
You can also add a new UIImageView that spans your UIView by code, Initiate your UIImageView with the same Rect frame as your UIView, and add it as a preview.
source
share