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
You are setting the cell's text property to a dictionary:
cell.textLabel.text = dict[@"Title"];
From your log of dict:
Title = {
};
and:
detailTextLabel.text = dict[@"Text"];
From your log of dict:
Text = {
};
It's not clear exactly what values should be used from dict, but it should not be those dictionaries.