我在http://nsscreencast.com/episodes/8-automatic-uitableview-paging
的tag
找到了UITableViewCell
属性
- (void)tableView:(UITableView *)tableView
willDisplayCell:(UITableViewCell *)cell
forRowAtIndexPath:(NSIndexPath *)indexPath {
if (cell.tag == kLoadingCellTag) {
_currentPage++;
[self fetchBeers];
}
}
但tag
是什么意思?我在Doc https://developer.apple.com/LIBRARY/ios/documentation/UIKit/Reference/UITableViewCell_Class/Reference/Reference.html
答案 0 :(得分:4)
tag
在UIView
中声明,并由UITableViewCell
继承。它用于从代码中识别UIView
及其后代。您还可以在tag
编辑器中设置storyboard
。
来自UIView
班级参考:
<强>代码
一个整数,可用于标识应用程序中的视图对象。
@property(nonatomic) NSInteger tag
讨论
默认值为0.您可以设置此标记的值,并稍后使用该值来标识视图。