I\'ve a UITableView
with custom UILabel
for title and one another to subtitle, in order to align the text to right.
My data come from web s
In your tableView:willDisplayCell:forRowAtIndexPath:
,
check this line,
cell = [Netroads willDisplayFlatDesignCell:cell];
something wrong with this method, [Netroads willDisplayFlatDesignCell];
You are trying to get a length
from a NSDictionary
instead of NSArray
. If you are loading data from a JSON webservice, probably you are parsing NSDictionary
as an NSArray
. Fix that method, then it won't crash.