UITableViewCell show white background and cannot be modified on iOS7

后端 未结 14 1327
轻奢々
轻奢々 2020-11-28 18:42

I\'ve implemented a custom table view cell class that inherit from UITableViewCell. The tableview contains a background image, so I want cell\'s background to b

14条回答
  •  -上瘾入骨i
    2020-11-28 19:03

    Write this in your cellForRowAtIndexPath method before return cell;

    cell.backgroundColor = [UIColor clearColor];
    

提交回复
热议问题