标签:des blog http io os ar sp art on
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];
标签:des blog http io os ar sp art on
原文地址:http://www.cnblogs.com/dqxu/p/4018651.html