diff options
Diffstat (limited to 'CyteKit/ListController.mm')
-rw-r--r-- | CyteKit/ListController.mm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CyteKit/ListController.mm b/CyteKit/ListController.mm index 7d90045..adc55fd 100644 --- a/CyteKit/ListController.mm +++ b/CyteKit/ListController.mm @@ -155,6 +155,8 @@ static CGFloat CYStatusBarHeight() { [self setView:view]; list_ = [[[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStylePlain] autorelease]; + if ([list_ respondsToSelector:@selector(setCellLayoutMarginsFollowReadableWidth:)]) + [list_ setCellLayoutMarginsFollowReadableWidth:NO]; [list_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)]; [view addSubview:list_]; |