码迷,mamicode.com
首页 > 其他好文 > 详细

Day12 TableViewCell 辅助功能

时间:2015-04-11 13:03:46      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:

accessoryType

typedef NS_ENUM(NSInteger, UITableViewCellAccessoryType) {
    UITableViewCellAccessoryNone,                   // don‘t show any accessory view
    UITableViewCellAccessoryDisclosureIndicator,    // regular chevron. doesn‘t track
    UITableViewCellAccessoryDetailDisclosureButton, // info button w/ chevron. tracks
    UITableViewCellAccessoryCheckmark,              // checkmark. doesn‘t track
    UITableViewCellAccessoryDetailButton NS_ENUM_AVAILABLE_IOS(7_0) // info button. tracks
};

2 accessoryTypeView 可放一些switch

//cell.accessoryView = [[UISwitch alloc]init];
    cell.accessoryView = [UIButton buttonWithType:UIButtonTypeContactAdd];

  

backgroundColor  

   backgroundView //可放一些圆形的底图

selectedBackgroundView

 UIView *iv = [[UIView alloc]init];
    iv.backgroundColor = [UIColor redColor];
    cell.selectedBackgroundView =iv;

  

Day12 TableViewCell 辅助功能

标签:

原文地址:http://www.cnblogs.com/lihaozhou/p/4417253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!