开发者

Does a grouped UITableView give its backgroundColor to its cells?

开发者 https://www.devze.com 2022-12-24 20:04 出处:网络
I want to have a background Image for a UITableView Imagine you have just any grouped table initialized like this:

I want to have a background Image for a UITableView

Imagine you have just any grouped table initialized like this:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

// Override point for customization after application launch
ImageTableViewController *vc = [[ImageTableViewController alloc] initWithStyle:UITableViewStyleGroupe开发者_StackOverflowd];


 NSString *imagePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"BackgroundImage.jpg"];
 UIImage *image = [[[UIImage alloc] initWithContentsOfFile:imagePath] autorelease];
 vc.tableView.backgroundColor = [UIColor colorWithPatternImage:image];

 [window addSubview:vc.view];
    [window makeKeyAndVisible];

 return YES;
}

This results in the tableView having the backgrounImage, but also every cell having the lowermost part of the image.

I suppose this is the case, because UITableViewCell should have the same backgroundColor as UITableView. It would work good for colors, but with images the case is totally different.

Is there a way to tell UITableViewCell not to use this image?


override tableView:willDisplayCell:forRowAtIndexPath: and give the cell a transparent background

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号