首页 > 其他 > 详细

12-27cell常用的属性

时间:2015-12-27 00:59:44      阅读:231      评论:0      收藏:0      [点我收藏+]

1.创建cell

//    创建一个cell并且设置cell的风格

    UITableViewCell *cell  = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:nil];

    CZHero *hero = self.heros[indexPath.row];

//给cell中的

    cell.textLabel.text = hero.name;

    cell.imageView.image = [UIImage imageNamed: hero.icon];

    cell.detailTextLabel.text = hero.intro;

//    设置附属物风格

    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

    return cell;

2.常用的属性

1)附属物风格属性

@property (nonatomic) UITableViewCellAccessoryType    accessoryType;              // default is UITableViewCellAccessoryNone. use to set standard type

也可以自定义附属物

@property (nonatomic, strong, nullable) UIView       *accessoryView;              // if set, use custom view. ignore accessoryType. tracks if enabled can calls accessory action

 

    cell.accessoryView = [UIButton buttonWithType:UIButtonTypeContactAdd];

效果技术分享

 

12-27cell常用的属性

原文:http://www.cnblogs.com/BJTUzhengli/p/5079387.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!