应用程序崩溃在IOS 5上运行以前的版本

时间:2011-10-20 05:16:57

标签: iphone xcode4 ios5

我的应用程序于10月5日在App Store上推出。它在除iOS 5之外的所有iOS版本上都运行良好。在特定类上,它正在崩溃:

[[self.tableView cellForRowAtIndexPath:lastIndex] 
  setAccessoryType:UITableViewCellAccessoryNone];  

我收到错误“执行错误访问。”

这可能是因为Apple在iOS 5中引入了ARC吗?

1 个答案:

答案 0 :(得分:1)

应该保留indexPath。

在您的陈述之前添加[lastIndex retain];