标签在UiViewtableCell中意味着什么?

时间:2014-02-04 08:30:54

标签: uitableview ios7

我在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

中找不到含义

1 个答案:

答案 0 :(得分:4)

tagUIView中声明,并由UITableViewCell继承。它用于从代码中识别UIView及其后代。您还可以在tag编辑器中设置storyboard

来自UIView班级参考:

<强>代码
一个整数,可用于标识应用程序中的视图对象。

@property(nonatomic) NSInteger tag

讨论

默认值为0.您可以设置此标记的值,并稍后使用该值来标识视图。