Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

moonman239

Cancelled
Original poster
Mar 27, 2009
1,541
32
My app crashed and I got the following message in the debugger log:

2015-07-27 11:19:21.959 [958:37300] *** Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:], /SourceCache/UIKit_Sim/UIKit-3347.44.2/UITableView.m:7524

Worse, this is all I see in Xcode:Edit: If you can't see it, here's the link: Screenshot

Update: I'm just looking for generalizable advice, not really too specific to any problem.
 
Last edited:

ViviUO

macrumors 6502
Jul 4, 2009
307
22
My app crashed and I got the following message in the debugger log:



Worse, this is all I see in Xcode: Edit: If you can't see it, here's the link: Screenshot
NCHG3w9gXk_1RFq0xVEUb0uKj2-ED2Rp_LVp9vBCccrO1ncgGDgyUc0ayQu6sgz4NoFs5Mm-8JiUWcA=w1102-h530-rw

I can't see your image, but this typically gets thrown when you are returning nil in tableView:cellForRowAtIndexPath. Make sure you are actually returning a UITableViewCell and also ensure your cell identifier string is valid.
 

moonman239

Cancelled
Original poster
Mar 27, 2009
1,541
32
I can't see your image, but this typically gets thrown when you are returning nil in tableView:cellForRowAtIndexPath. Make sure you are actually returning a UITableViewCell and also ensure your cell identifier string is valid.

Ah, thanks!
Edit: That's it! (Note to self:
Code:
UITableViewCell *cell
and
Code:
TableViewCellSubclass *cell
creates two different variables)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.