romaonthego / RETableViewManager

Powerful data driven content manager for UITableView.
MIT License
2.48k stars 432 forks source link

TextItem display incorrectly on iPad #249

Closed ajurcevic closed 6 years ago

ajurcevic commented 8 years ago

Hi guys, I'm having issues with displaying the RETextItem correctly on iPad.

deployment target for 8.1, however only noticing on iOS9+ devices.

using this line to display: [RETextItem itemWithTitle:@"Version" value:@"1.8.5"]

but i am getting indentations of the heading and Title, the value however appears to stay put...

Landscape: Image of Landscape Portrait: Image of Portrait

loadmemo commented 8 years ago

you can fix it with code below

// iOS9+
    if([self.tableView respondsToSelector:@selector(setCellLayoutMarginsFollowReadableWidth:)]) {
        self.tableView.cellLayoutMarginsFollowReadableWidth = NO;
    }
ajurcevic commented 6 years ago

closing as the above code from loadmemo fixed this at the time.