我有這樣的代碼是與錯誤*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSArray objectAtIndex:]: index 0 beyond bounds for empty array'
獲取NSRangeException超越界限崩潰
在這一行崩潰:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
MyObject *myCode = [self.fetchedResultsController objectAtIndexPath:indexPath];
}
我看不出什麼錯在這裏,它是從一個獲取拉低數據。
如果您嘗試訪問空數組的第一個元素,您不覺得有什麼問題嗎? –