escoz / QuickDialog

QuickDialog - Quick and easy dialog screens for iOS
http://escoz.com/open-source/quickdialog
Other
3.08k stars 637 forks source link

Fix table view width issue for iOS 9 #740

Open haranicle opened 8 years ago

haranicle commented 8 years ago

Fix this issue. http://stackoverflow.com/questions/32845075/ios-9-uitableview-cells-text-label-not-the-full-width-of-the-uitableview

tschig commented 8 years ago

This fixed it.

For not messing up the Framework I used

    if([self.quickDialogTableView respondsToSelector:@selector(setCellLayoutMarginsFollowReadableWidth:)]) {
        self.quickDialogTableView.cellLayoutMarginsFollowReadableWidth = NO;
    }

in viewWillAppear.

olgeni commented 8 years ago

This fixed the issue for me, thanks!

Is QuickDialog still being maintained?