`
jsntghf
  • 浏览: 2478881 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

UITableViewStyleGrouped直角

    博客分类:
  • iOS
阅读更多

默认的UITableViewStyleGrouped是圆角的



 

如果需要改成直角,修改- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath即可。

 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    // code
    cell.textLabel.backgroundColor = [UIColor clearColor];
    UIImageView *imgView = [[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, 44)] autorelease];
    imgView.image = [UIImage imageNamed:@"cellBg"];
    cell.backgroundView = imgView;
    // code    
}

  

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics