Links

How to set UIView Background

UIColor *background = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"bg.png"]];
self.view.backgroundColor = background;
[background release];

Post a Comment