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

tableview和cell的样式

时间:2014-10-11 13:48:35      阅读:320      评论:0      收藏:0      [点我收藏+]

标签:des   blog   http   io   os   ar   sp   art   on   

IOS开发中UITableView和UITableViewCell的几种样式

 

   cell.textLabel.text = shop.title;
   cell.detailTextLabel.text = shop.desc;

    //cell.imageView是只读的,可以给cell.imageView.image赋值
    cell.imageView.image = [UIImage imageNamed:shop.iconName];
    
    // 右边的箭头
    cell.accessoryType =    UITableViewCellAccessoryDisclosureIndicator;
    
    // 设置最右边的显示什么控件
    cell.accessoryView = [UIButton buttonWithType:UIButtonTypeContactAdd];

tableview和cell的样式

标签:des   blog   http   io   os   ar   sp   art   on   

原文地址:http://www.cnblogs.com/dqxu/p/4018651.html

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