0

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

https://i.sstatic.net/quYOM.png

and this is Reeder style

https://i.sstatic.net/WKNAK.png

5
  • i don't have 10reputation yet to show entire code! :(
    – arcangel06
    Commented Jan 31, 2013 at 12:00
  • @Bruno.cf // Summary cell.textLabel.text = summaryString; cell.textLabel.numberOfLines = 0; // Multiline cell.textLabel.textAlignment = UITextAlignmentCenter; cell.backgroundColor = [UIColor clearColor]; cell.textLabel.font = [UIFont italicSystemFontOfSize:15];
    – arcangel06
    Commented Jan 31, 2013 at 12:11
  • Ask me If you have another part of code to solve my question ..
    – arcangel06
    Commented Jan 31, 2013 at 23:43
  • Ciao Mattia, did you find any solution to show feeds like Reeder does?
    – Filippo
    Commented Oct 4, 2013 at 13:32
  • yep :D the solutions are: Readability API or Readbility custom URL. More info on www.readability.com for API/URL. personally i've used custom url, filtering my url, like this--> read_url= [NSString stringWithFormat:@"http://www.readability.com/m?url=%@", _entry.articleUrl];
    – arcangel06
    Commented Oct 5, 2013 at 17:17

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Browse other questions tagged or ask your own question.