I\'ve a UITableView with custom UILabel for title and one another to subtitle, in order to align the text to right.
UITableView
UILabel
My data come from web s
Reason: NSDictionary doesn't have lengh method but NSString has
Change this line
if (imageUrl.length > 0) {
To
if ([imageUrl isKindOfClass:[NSString class]] && imageUrl.length > 0) {