gpt4 book ai didi

iphone - iOS - EXC 错误访问,以前在 iOS 4 上工作

转载 作者:行者123 更新时间:2023-11-28 19:22:03 24 4
gpt4 key购买 nike

除非我疯了,否则这在 iOS4 上工作正常。我更新到 iOS5,现在它在 [indexPath section] 上抛出这个错误的访问错误。它位于 UITableView 上:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{        // Get the cell label and value    NSLog(@"section: %@", [indexPath section]); /* BAD ACCESS ERROR HERE */...

最佳答案

日志语句本身导致错误。

NSLog(@"section: %@", [indexPath section]); /* BAD ACCESS ERROR HERE */

您正在尝试记录一个整数,就好像它是一个对象一样。应该是:

NSLog(@"section: %i", [indexPath section]);

关于iphone - iOS - EXC 错误访问,以前在 iOS 4 上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8023477/

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