gpt4 book ai didi

ios - 比较重用标识符崩溃

转载 作者:行者123 更新时间:2023-11-28 22:55:06 25 4
gpt4 key购买 nike

我需要为 UITableView 中的所有单元格设置自定义单元格高度。在这个方法中:

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

我试试这个:

if ([[tableView cellForRowAtIndexPath:indexPath] reuseIdentifier] == @"imageCell")

因为我在 Storyboard中设置了 3 个具有不同标识符的不同单元格。但是,我的应用程序在这里崩溃并显示 EXC_BAD_ACCESS

知道为什么吗?

谢谢。

最佳答案

你正在比较一个字符串,所以你应该使用 isEqualToString:

if ([[[tableView cellForRowAtIndexPath:indexPath] reuseIdentifier] isEqualToString:@"imageCell"])

关于ios - 比较重用标识符崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10972250/

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