2013-08-03 54 views
0

我已经在每个部分的UITableView的头部中插入UIButton,我想知道是否可以按下时检索部分编号,我以这种方式添加按钮:从UIButton的UITableview部分中的UIButton检索部分

- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section { 

UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 309, 70)]; 

UIButton *markAllYes = [UIButton buttonWithType:UIButtonTypeCustom]; 

[markAllYes setImage:[UIImage imageNamed:@"mini_seen.png"] forState:UIControlStateNormal]; 
[markAllYes setFrame:CGRectMake(95, 35, 31, 31)]; 
[markAllYes addTarget:self action:@selector(markAllYesPressed:) forControlEvents:UIControlEventTouchUpInside]; 
[headerView addSubview:markAllYes]; 

return headerView; 
} 
+0

使用像这样的标签markAllYes.tag =使用markAllYes.tag按钮标签的部分和访问。 –

回答

2

你可以使用你的UIButton的tag属性。

markAllYes.tag = section