gpt4 book ai didi

iphone - 如何在表格单元格按钮中执行操作

转载 作者:行者123 更新时间:2023-12-03 21:05:52 25 4
gpt4 key购买 nike

在我的应用程序中,我创建了一个 UIViewController 页面,其中我已经获取了一个表。通过自定义该表格,我在该表格的每个单元格中创建了一个添加按钮。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {


static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if(cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"CustomBuddy" owner:self options:nil];
cell = self.customCell;
self.customCell = nil;

}
cell.text = (NSString *)[names objectAtIndex:indexPath.row];



return cell;
}

并向添加按钮添加操作

  -(IBAction)addButtonClicked
{

NSLog(@"Add button clicked");

}

现在在这个添加按钮中我想获取单元格中存在的名称。我该怎么做,请帮助我......

最佳答案

您可以在创建 tableView:cellForRowAtIndexPath 期间为“添加​​”按钮分配标记。然后,您可以在触发时读出“添加”按钮标签。顺便说一句,它应该是 -(IBAction) addButtonClicked:(id) sender

关于iphone - 如何在表格单元格按钮中执行操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7188270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com