gpt4 book ai didi

ios - 用 Action 连接静态单元格

转载 作者:技术小花猫 更新时间:2023-10-29 11:14:14 24 4
gpt4 key购买 nike

我想使用 Storyboard将静态单元格与 Action 连接起来。问题是您无法将单元格与操作联系起来,所以我尝试了另一种方式。所以在我的头文件中,我使用 Storyboard将此属性与静态单元格连接起来:

@property (nonatomic, strong) IBOutlet UITableViewCell *theStaticCell;  

    UITableViewCell *theCellClicked = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:1]];
if (theCellClicked == _theStaticCell) {
NSLog(@"Static cell clicked");
}

所以我想使用“更新”单元格,当您单击它时,上面的代码就会执行。

enter image description here

最佳答案

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
if (indexPath.section ==1 && indexPath.row == 0)
{
//Do what you want to do.
}
}

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{
// Cell will be deselected by following line.
[self.tableView deselectRowAtIndexPath:indexPath animated:YES];

UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
UITableViewCell *staticCell = [tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:1]];

if (cell == staticCell)
{
//Do what you want to do.
}
}

关于ios - 用 Action 连接静态单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15702038/

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