我尝试为单元格内的按钮设置 tag :
- (UITableViewCell *)tableViewUITableView *)tableView cellForRowAtIndexPathNSIndexPath *)indexPath {
[cell.btnWithIdCell setTag: (int) self.responseObject[@"results"][indexPath.row][@"id"]];
}
在事件中单击按钮后,我尝试获取 tag :
- (IBAction)openid)sender {
NSString* tagString = [NSString stringWithFormat"%d", [sender tag]];
}
它给了我错误的数字 tagString 。
如何从响应对象中为按钮设置标签?
Best Answer-推荐答案 strong>
在单元格中设置按钮标签:
cell.btnWithIdCell.tag = indexPath.row;
关于ios - 如何在单元格iOS中为按钮设置标签?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/35507195/
|