iOS-8-Swift-Programming-Cookbook icon indicating copy to clipboard operation
iOS-8-Swift-Programming-Cookbook copied to clipboard

PopoverTableViewController crashes with iPhone

Open sarvex opened this issue 9 years ago • 0 comments

PopoverTableViewController crashes when the + button is clicked. By default Popovers are disabled for iPhones and I have to add the following extension to run the code.

extension UIPopoverController {
    class var _popoversDisabled : Bool {
        get { return false }
    }
}

I am using Xcode 6.3

sarvex avatar Apr 14 '15 06:04 sarvex