Post

Replies

Boosts

Views

Activity

Reply to Exception reason in Xcode Organizer
Thanks, but I know that already. What I was trying to ask is something different: When I look at the crashes of my published app in the Xcode Organizer by selecting a crash and then using "Open in Project..." I see on which line of code the crash did happen. But is it also possible for those crashed to get a "terminating app due to..." reason?
Dec ’21
Reply to "unable to dequeue a cell with identifier" only on iPadOS 15.0
The app is a universal app with just one target. I did open a code level technical support request for this issue. I can work around it with this crazy piece of code: @try { cell = [tableView dequeueReusableCellWithIdentifier:reuseIdentifierTextCell forIndexPath:indexPath]; } @catch(id exception) { NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"ChatTextCellCondensed" owner:self options:nil]; cell = [topLevelObjects objectAtIndex:0]; }
Sep ’21