标签:uitableview 表视图
1.style样式一共分为两种:plain和group
2.分割线样式:separatorStyle
3.分割线颜色:separaColor
4.行高:rowHeight
需要实现协议中两个必须实现的方法:
1.返回有多少条数据
-(NSInterger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInterger)section;
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
1.UITableView中每?一个单元格,被称为一个cell
(UITableViewCell)。
2.系统预置了4种(枚举)样式的cell。
3.不同样式的cell包含的控件有细微差别。
在这里可以设置以下几种属性:
1.设置图片:imageView
2.设置文本:textField
3.指定选中效果:selectionStyle
4.指定辅助效果样式:accessoryType
1.UITableView靠mutableSet来实现重?用功能
2.出屏幕的cell会被添加到mutableSet中,进?入屏幕的cell,先从set中 获取,如果获取不到,才创建?一个cell。在cell显?示之前,给cell赋上相应的内容。
3.cell的reuseIdentifier是重?用的关键
NSIndexPath:
1. 行 :row
2. 分区:section
3. +(NSIndexPath *)indexPathForRow: (NSUInteger)row inSection:(NSUInteger)section
1.tableView默认是?一个分区,可以设置多个分区
2.tableView的plain、group样式决定分区的样式不同
3.每个分区可以设置区头区尾
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; //分区数
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section; //分区头标题
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView; //右侧竖排索引
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:uitableview 表视图
原文地址:http://blog.csdn.net/mltianya/article/details/47344531