gpt4 book ai didi

ios - UITableView:如何获取特定部分的所有行?

转载 作者:可可西里 更新时间:2023-11-01 04:09:52 27 4
gpt4 key购买 nike

我想要什么?
我想添加单选按钮功能,其中特定部分的用户只能选择一行

enter image description here

我怎么做到的?
我添加了 UISwitch 并根据用户点击的行我想执行以下操作

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section == 1 || indexPath.section == 2) {

// disable all the rows of this section except indexPath.row
}
}

我卡在哪里了?

如何获取 UITableView 中给定部分的所有行?

P.S:我刚开始学习 iOS,如果这是一个愚蠢的问题,请多多包涵

最佳答案

使用[tableView cellForRowAtIndexPath:(NSIndexPath *)]

for (int i = 0; i < [self.tableView numberOfRowsInSection:indexPath.section]; i++) {
if (i != indexPath.row) {
UITableViewCell* cell = [tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:indexPath.section]];
//Do your stuff
}
}

关于ios - UITableView:如何获取特定部分的所有行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24394642/

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