一個頁面如果用UITableView來展現(xiàn)數(shù)據(jù)并進(jìn)行相關(guān)操作饮亏,可能會經(jīng)常遇到cell內(nèi)部按鈕點擊事件耍贾,點擊不同的按鈕進(jìn)行不同的操作或者是展現(xiàn)不同的數(shù)據(jù)。如下圖所示路幸,點擊右側(cè)按鈕可以撥打每個客戶的電話荐开。
由于UITableView的數(shù)據(jù)是通過其數(shù)據(jù)源方法來進(jìn)行展示的,數(shù)據(jù)通常存儲在模型數(shù)組中简肴,要想實現(xiàn)cell內(nèi)部按鈕點擊獲取到對應(yīng)cell的信息則可以先獲得當(dāng)前cell的indexPath或者通過按鈕的TAG值實現(xiàn)晃听。
先來說說前面一種方法,獲取當(dāng)前cell的indexPath砰识。
不過在此之前能扒,首先要確定你的cell創(chuàng)建方式,是Xib自定義創(chuàng)建的cell還是通過純代碼創(chuàng)建的辫狼,因為會有一點區(qū)別初斑,如果不提前確定創(chuàng)建cell的方式,也會出現(xiàn)錯誤予借。
第一種情況:通過XIb創(chuàng)建的cell
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *cellID = @"test";
testCell *cell = (testCell *)[tableView dequeueReusableCellWithIdentifier:cellID];
if (!cell) {
cell = [[[NSBundle mainBundle]loadNibNamed:@"testCell" owner:self options:nil]lastObject];
}
cell.testLabel.text = self.data[indexPath.row];
//添加按鈕點擊事件
[cell.testBtn addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];
return cell;
}
//按鈕點擊事件
-(void)click:(UIButton *)btn{
UIView *contentView = [btn superview];
testCell *cell = (testCell *)[contentView superview];
NSIndexPath *indexPath = [self.tb indexPathForCell:cell];
NSLog(@"%@----%@",indexPath,self.data[indexPath.row]);
}
從上往下依次點擊每一行的按鈕越平,打印結(jié)果如下
2017-03-31 16:07:37.077 cell按鈕點擊事件 代理方法[40818:1294020] <NSIndexPath: 0xc000000000000016> {length = 2, path = 0 - 0}----第一行
2017-03-31 16:07:38.230 cell按鈕點擊事件 代理方法[40818:1294020] <NSIndexPath: 0xc000000000200016> {length = 2, path = 0 - 1}----第二行
2017-03-31 16:07:39.190 cell按鈕點擊事件 代理方法[40818:1294020] <NSIndexPath: 0xc000000000400016> {length = 2, path = 0 - 2}----第三行
2017-03-31 16:07:39.919 cell按鈕點擊事件 代理方法[40818:1294020] <NSIndexPath: 0xc000000000600016> {length = 2, path = 0 - 3}----第四行
第二種情況:純代碼創(chuàng)建的cell
自定義cell的.m文件
#import "customCell.h"
@interface customCell()
@property (nonatomic,strong) UILabel *label;
@end
@implementation customCell
-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(180, 20, 80, 50)];
self.label = label;
[self.contentView addSubview:label];
}
return self;
}
-(void)reloadData:(NSArray *)data index:(NSIndexPath *)index{
self.label.text = data[index.row];
}
在ViewController.m里
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *cellID = @"custom";
customCell *cell = (customCell *)[tableView dequeueReusableCellWithIdentifier:cellID];
if (!cell) {
cell = [[customCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
}
UIButton *btn = [[UIButton alloc]initWithFrame:CGRectMake(20, 20, 100, 50)];
[btn setTitle:@"點擊一哈" forState:UIControlStateNormal];
[btn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
//添加按鈕點擊事件
[btn addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];
[cell addSubview:btn];
[cell reloadData:self.data index:indexPath];
return cell;
}
**使用純代碼創(chuàng)建cell,如果按照前面xib創(chuàng)建cell一樣的方法灵迫,在按鈕的點擊事件里代碼如下秦叛,運行打印結(jié)果則并不是正確的。
-(void)click:(UIButton *)btn{
UIView *contentView = (UIView *)[btn superview];
customCell *cell = (customCell *)[contentView superview];
NSIndexPath *path = [self.TB indexPathForCell:cell];
NSLog(@"%@----%@",indexPath,self.data[indexPath.row]);
}
從上往下一次點擊按鈕瀑粥,打印結(jié)果如下:
2017-03-31 16:21:03.668 customCell[41363:1315437] (null)----第一行
2017-03-31 16:21:05.735 customCell[41363:1315437] (null)----第一行
2017-03-31 16:21:06.535 customCell[41363:1315437] (null)----第一行
2017-03-31 16:21:07.407 customCell[41363:1315437] (null)----第一行
**事實上挣跋,通過這種子視圖獲取父視圖,然后再調(diào)取- (nullable NSIndexPath )indexPathForCell:(UITableViewCell )cell方法獲得對應(yīng)cell的NSIndexPath狞换,兩種不同方法創(chuàng)建cell實則存在差異避咆。使用純代碼創(chuàng)建cell的正確方法應(yīng)該如下
-(void)click:(UIButton *)btn{
customCell *cell = (customCell *)[btn superview];
NSIndexPath *indexPath = [self.TB indexPathForCell:cell];
}
在使用xib創(chuàng)建自定義cell的時候,倘若通過這種方法獲取當(dāng)前cell的NSIndexPath修噪,可以打開cell的xib視層圖查库,從按鈕所在的那個圖層依次向上看,遇到一個父視圖就調(diào)用superview方法黄琼,但是別忘了cell的Content View樊销,再用Content View調(diào)用一次superview方法才是你展示在tableview中的cell視圖。
再來后面的一種方法,通過按鈕的Tag值來相應(yīng)對應(yīng)按鈕的點擊事件围苫。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *cellID = @"test";
testCell *cell = (testCell *)[tableView dequeueReusableCellWithIdentifier:cellID];
if (!cell) {
cell = [[[NSBundle mainBundle]loadNibNamed:@"testCell" owner:self options:nil]lastObject];
}
cell.testLabel.text = self.data[indexPath.row];
[cell.testBtn addTarget:self action:@selector(click:) forControlEvents:UIControlEventTouchUpInside];
//通常為了避免跟系統(tǒng)tag值沖突裤园,一般都會加上一個大數(shù)值,調(diào)用的時候再減去這個數(shù)值
cell.testBtn.tag = indexPath.row + 9999;
return cell;
}
-(void)click:(UIButton *)btn{
NSLog(@"%ld---%@",btn.tag - 9999 ,self.data[btn.tag - 9999]);
}
從上往下一次點擊按鈕剂府,打印結(jié)果如下:
2017-03-31 16:45:52.941 cell按鈕點擊事件 代理方法[41664:1326741] 0---第一行
2017-03-31 16:45:53.573 cell按鈕點擊事件 代理方法[41664:1326741] 1---第二行
2017-03-31 16:45:54.556 cell按鈕點擊事件 代理方法[41664:1326741] 2---第三行
2017-03-31 16:45:55.212 cell按鈕點擊事件 代理方法[41664:1326741] 3---第四行
實際上拧揽,使用按鈕的TAG值是比較簡單的方法,但是項目中有大量tag值的腺占,并不推薦使用這個方法淤袜,容易造成混亂,不好維護(hù)湾笛。而且通過tag值獲取控件的方式是通過遍歷所有子控件的tag值來完成的饮怯,效率會比較低下。
tag有什么壞處呢嚎研?目前表現(xiàn)出來的壞處就是蓖墅,使用太多容易混亂,在復(fù)雜度較高的程序中临扮,可讀性很差论矾。間接的也體現(xiàn)了一些工程師,不愛使用enum枚舉的一個陋習(xí)杆勇,滿篇的xxx.tag = 1....之類的代碼贪壳。
tag有什么好處呢?既然UIKit的class里面都有一個tag屬性蚜退,肯定是有它存在的道理闰靴,tag顧名思義就是給視圖打上標(biāo)簽,可以用來遍歷子視圖钻注,而不用定義property或是nsarray來進(jìn)行特定的定義或保存指針蚂且。舉個例子,要你生成10個label幅恋,是使用循環(huán)生成方便還是通過property一個一個定義方便杏死?當(dāng)然使用循環(huán)+局部變量方便的多,如果這10個label同時存在交互捆交,你就有三個選擇:使用tag淑翼,或者使用nsarray進(jìn)行保存指針,或者使用category或繼承來自定義控件實現(xiàn)品追。這里就很明顯了玄括,使用tag需要的代碼最少,當(dāng)然也就成了眾多工程師們偷懶的一種方式肉瓦。