gpt4 book ai didi

iphone - 如何在2部分中激活tableView didSelectRowAtIndexPath?

转载 作者:行者123 更新时间:2023-12-01 18:00:17 27 4
gpt4 key购买 nike

我有一个分为2个部分的UItableView。

我如何管理tableView didSelectRowAtIndexPath方法?

对于第1部分,该方法正在运行,但是对于第二部分,我不知道如何实现。

谢谢

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

最佳答案

只是:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.section == 0) {
//Your code for Section 1 with the index 0
} else {
//Your code for Section 2 with the index 1
}
}

关于iphone - 如何在2部分中激活tableView didSelectRowAtIndexPath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10911578/

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