In my application I use a parser in order to load data from rss. When I insert them in table, using the text allignment center, I do not obtain the correct visualization for me. I want obtain result like Reeder app.
My Code:
// Summary cell.textLabel.text = summaryString;
cell.textLabel.numberOfLines = 0;
// Multiline cell.textLabel.textAlignment = UITextAlignmentCenter;
cell.backgroundColor = [UIColor clearColor];
cell.textLabel.font = [UIFont italicSystemFontOfSize:15];
This is my table
and this is Reeder style
// Summary cell.textLabel.text = summaryString; cell.textLabel.numberOfLines = 0; // Multiline cell.textLabel.textAlignment = UITextAlignmentCenter; cell.backgroundColor = [UIColor clearColor]; cell.textLabel.font = [UIFont italicSystemFontOfSize:15];
read_url= [NSString stringWithFormat:@"http://www.readability.com/m?url=%@", _entry.articleUrl];