Hi Everyone, I am having a strange issue with displaying a custom image in my UIView. I have a table view that is setup displaying 4 cells, and then behind that I would like to have a custom image. Right now it is looking like this: where the tan is the background color I want, and the grayish color right next to the cells is the color I don't want. Here is my code in the viewDidLoad:
- (void)viewDidLoad {
[super viewDidLoad];
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"IMAGE320.tiff"]];
I know its a pretty basic problem, but why is that gray ish part showing up next to my cells? There has to be a way to clean that up...any help is greatly appreciated!! Thanks