int p = [indexPath indexAtPosition: [indexPath length] - 1];
[cell setText:[[array objectAtIndex: p] objectForKey: @"title"]];
I cannot find the reason for the error here . Im doing xml parsing and simply wanting to show the contents in a tableview but the program does not run as the deprecated error pops up which i cant figure out why.
You need to access the cell’s
textLabelinstead:The old
textproperty onUITableViewCellwas deprecated a long time ago.