gpt4 book ai didi

ios - accessoryButtonTappedForRow 在模拟器上调用但不在设备上调用

转载 作者:行者123 更新时间:2023-11-29 10:34:29 25 4
gpt4 key购买 nike

我有一个自定义的 tableView 设置,它不会对单元格进行出列。我没有在 Storyboard 中使用静态单元格,因为我使用的是包含 tableView 的 UIViewController。无论设置如下:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
// Array > Dictionary > cell.textLabel.text info here

switch (indexPath.section) {
case 0:
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
switch (indexPath.row) {
case 4:
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.accessoryType = UITableViewCellAccessoryDetailButton;
//etc etc

单元格的设置与上面的代码所示相同。

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
NSIndexPath *pubdisclaimer = [NSIndexPath indexPathForRow:2 inSection:2];
NSIndexPath *maintenanceInfo = [NSIndexPath indexPathForRow:4 inSection:0];

if (indexPath == pubdisclaimer) {
NSLog(@"Disclaimer Tapped");
//Show UIAlertController
} else if (indexPath == maintenanceInfo) {
NSLog(@"Maintenance tapped");
//Show Different UIAlertController
} else {
//
}
}

accessoryButtonTapped 在模拟器中被检测到(并且不同的 UIAlertControllers 相应地填充)但是,当在与模拟器相同的部署目标的设备上运行时,除了按钮突出显示之外没有任何反应。这适用于一个 indexPath,但当我包含 else if 语句时,它不会在设备上调用。

仅供引用,所有 tableView 委托(delegate)和数据源都已正确设置为文件所有者。就像我说的那样,在我添加第二个 NSIndexPath 之前一切正常,这让我相信这就是问题所在。但如果是这样,为什么它在模拟器中可以完美运行,甚至可以区分两个不同的按钮索引?我想我在这里遗漏了一些简单的东西。如何排除故障?

编辑 记录 indexPaths:

模拟器返回

2015-01-05 21:42:54.666 [38440:9202972] didSelectRowAtIndexPath section: 0, row: 4
2015-01-05 21:42:57.993 [38440:9202972] accessoryButtonTapped section: 0, row: 4
2015-01-05 21:43:04.765 [38440:9202972] didSelectRowAtIndexPath section: 2, row: 2
2015-01-05 21:43:08.185 [38440:9202972] accessoryButtonTapped section: 2, row: 2

设备返回

2015-01-05 21:45:17.564 [4072:1128326] didSelectRowAtIndexPath section: 0, row: 4
2015-01-05 21:45:19.763 [4072:1128326] Nothing tapped : else
2015-01-05 21:45:28.613 [4072:1128326] didSelectRowAtIndexPath section: 2, row: 2
2015-01-05 21:45:29.313 [4072:1128326] Nothing tapped : else

最佳答案

更改if条件并将其分别分解为部分

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

// PubDisclaimer
if ((indexPath.row == 2 && indexPath.section == 2)) {
NSLog(@"Disclaimer Tapped");
//Show UIAlertController
}
// MaintenanceInfo
else if ((indexPath.row == 4 && indexPath.section == 0)) {
NSLog(@"Maintenance tapped");
//Show Different UIAlertController
}
else {
NSLog(@"Nothing tapped");
}
}

希望这对您有所帮助。

关于ios - accessoryButtonTappedForRow 在模拟器上调用但不在设备上调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27793189/

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