问题描述
- UITableViewStyleGrouped直角的问题
- 我是这样创建tableview的:
myTableView = [[UITableView alloc]initWithFrame:CGRectMake(0 0 320 400) style:UITableViewStyleGrouped];
然后创建出来
tableView
是圆角,我需要的是直角(这样tableview
看起来像个矩形),而且还可以分成许多部分。怎么实现?
解决方案
在tableView数据源,在cellForRowAtIndexPath中可以设置单元的背景为空
cell.backgroundView = [[UIView alloc] initWithFrame:CGRectZero()];
你可以在cell背景中添加一个图片什么的
解决方案二:
设置一张图片作为cell背景图片,然设置UITableVIew的背景颜色为ClearColor,如下:
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ ///代码. UIImageView *img = [[[UIImageView alloc]initWithFrame:CGRectMake(0 0 320 45)] autorelease]; img.image = [UIImage imageNamed:@""yourImageName""]; cell.backgroundView = img; ////代码}
时间: 2024-09-15 04:04:45