作者两年开发经验,通过通读api重温TableView,并记录
作者:Roger
1. Reusing Cells
A UITableView object maintains a queue (or list) of the currently reusable cells, each with its own reuse identifier, and makes them available to the delegate in the
2. prepareForReuse
当cell使用重用标识符,用户拖动tableView上拉,当顶部的cell消失时,它将被重用显示在最底部的下一条数据,此时cell会调用dequeueReusableCellWithIdentifier:
方法,并唤醒prepareForReuse
方法。其目的是让用户重置一些参数,比如 alpha, editing, 或 selection state。并且我们只能设置cell原本的属性,而如果cell是我们自定义的,我们无法重置我们自己添加的属性。
扩展阅读 ![http://www.jianshu.com/p/e153ec626847]
注意:实现此方法需要调用[super prepareForReuse]
3. Managing the Predefined Content[管理预定义内容]
用户可以通过
UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:(UITableViewCellStyle) reuseIdentifier:(nullable NSString *)];
创建iOS为我们预定义的几类cell:
typedef enum : NSInteger {
UITableViewCellStyleDefault,
UITableViewCellStyleValue1,
UITableViewCellStyleValue2,
UITableViewCellStyleSubtitle
} UITableViewCellStyle;
这些cell中会预置一些控件,比如UILabel,UIImageView。我们可以通过调用以下属性,修改这些预定义控件的参数。
- textLabel
- detailTextLabel
- imageView
如果某类预定义cell中不包含imageView,cell.imageView返回nil。
4. selectedBackgroundView && multipleSelectionBackgroundView
API上说UITableViewStylePlain风格的cell调用selectedBackgroundView返回nil,UITableViewStyleGrouped则不会。这一点我没有搞明白,虽然后者确实没有返回nil,但是当我设置其背景色时,却没有成功。这里保留,以后再看。
我们可以自己创建一个view,然后赋值给cell的selectedBackgroundView,当用户点击cell时可以在tableview的didSelectedCell方法里面调用setSelected:animated:方法改变点击时的动画。
另外,selectedBackgroundView只有在用户点击cell的时候才会被cell当作子类加入,层级在backgroundView(如果它存在)之上,其他所有控件之下。
multipleSelectionBackgroundView的层级是在contentView之下,selectedBackgroundView之上。
5. Managing Accessory Views
虽然苹果给我们提供了Accessory Views,但是大多数时候这些预定义的控件无法满足我们的需求。我们一般会自定义cell,当我们用自定义的cell调用accessoryView方法时,这个属性被无视。在此就不详细说明关于Accessory Views的相关方法了,因为实在用的比较少。
6. Managing Cell Selection and Highlighting
-
Selected
If you set the selection state to YES through this property, the transition to the new state appearance is not animated. For animated selected-state transitions, see the setSelected:animated: method.
-
selectionStyle
一般在自定义cell中,我们设置UITableViewCellSelectionStyleNone,使点击cell的时候没有点击效果。
-
- setSelected:animated:
set selected YES to set the cell as selected, NO to set it as unselected. The default is NO.
set animated YES to animate the transition between selected states, NO to make the transition immediate.
6. Editing the Cell
不常用,暂空。
7. 缩进
- indentationLevel & indentationWidth
开发者必须使用cell原生控件才能使用这两个属性,比如:
cell.textLabel.text = [_dataSouce objectAtIndex:indexPath.row];
cell.indentationLevel = 2;
cell.indentationWidth =5;
说明cell的缩进等级是2,缩进宽度是5。总值为10。如果是自定义控件,则不享受这两个属性。
-
separatorInset
此属性在我的另一篇文章《Learning TableView》中有介绍。
网友评论