标签:
经常做的事监听点击哪一行,一个indexPath代表一行 1. 监听选中某一行 /** 选中某一行时调用 */ - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { NSLog(@"选中了 %zd",indexPath.row); } 2.监听取消选中某行 /** 取消选中某一行调用 */ - (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath { NSLog(@"取消选中了 %zd",indexPath.row); } 3. 关于高度的设置,可设置每行的cell和头标题和尾标题 ** 设置tableView每一行的高度 */ - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { //偶数行高度100基数行告诉50 if(indexPath.row % 2 == 0){ return 100; }else{ return 50; } }
标签:
原文地址:http://www.cnblogs.com/jianghg/p/4557467.html