tableView和cell一些知识
Posted 蓝鹰iOS
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tableView和cell一些知识相关的知识,希望对你有一定的参考价值。
1.self.tableView.indexPathForSelectedRow.row // 被选中的行号
2.// 当cell的selection为None时, 即使cell被选中了, 内部的子控件也不会进入高亮状态
// self.textLabel.highlightedTextColor = [UIColor RedColcor];
3.可以在这个方法中监听cell的选中和取消选中
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
}
以上是关于tableView和cell一些知识的主要内容,如果未能解决你的问题,请参考以下文章
CustomTableCell 内的 UICollectionView