ios:UITableView常见属性

cell的常见属性:


imageView
textLabel
detailTextLabel (显示的时候类型不能是默认的 必须是subtitle )

accessoryType
accessoryView cell(称为:单元格)作用:设置右边的视图或者指示器
backgroundColor (设置单元格的背景颜色)

默认苹果系统内容的是选中时背景颜色为灰色
如果我们想改成自己想要的颜色: 不能用cell.backgroundcolor
但是我们可以用selectedBackgroundView 来实现


设置单元格选中时的背景颜色 
UIView *bgView=[UIView alloc] init];
bgView.backgroundColor=[UIColor greenColor];
cell.selectedBackgroundView=bgView;


tableView常用属性


rowHeight 可统一设置所有行的高度
separatorColor 分割线的颜色
separatorStyle 分割线的样式

tableHeaderView 一般可以放广告
tableFooterView 一般可以放加载更多

你可能感兴趣的:(ios:UITableView常见属性)