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
According to your log, you're try to access NSDictionary object as NSString. That's why it leads to above error.
NSDictionary
NSString
Problem should be here..
NSString *imageUrl = dict[@"imageUrl"];
If it's dictionary, it should be crash in this line..
if (imageUrl.length > 0)