WEPopover icon indicating copy to clipboard operation
WEPopover copied to clipboard

Exception on iOS 5.1.1 in WEPopoverController.m

Open Clouds123 opened this issue 7 years ago • 0 comments

-[UITableViewCellContentView translatesAutoresizingMaskIntoConstraints]: unrecognized selector

Fix is quite easy (various ways to do it, but one option is below). Change Line 858 in WEPopoverController.m to:

       if (view.autoresizingMask != UIViewAutoresizingNone || ([view respondsToSelector:@selector(translatesAutoresizingMaskIntoConstraints)] && !view.translatesAutoresizingMaskIntoConstraints)) {

Clouds123 avatar Mar 31 '17 17:03 Clouds123