Show ViewController on Extension info button Edit Mode

363 Views Asked by At

I am working on an Today Extension for Yosemite. I would like to show a SettingsViewController instead of going into edit mode. If I "presentViewControllerInWidget" on "widgetDidBeginEditing" it gets some weird glitches and the view controller is hiding and showing all the time.

Did anyone achieved to show an viewController on info button click or knows a workaround on that glitch?

func widgetDidBeginEditing() {
    self.presentViewControllerInWidget(self.settingsViewController)
}
2

There are 2 best solutions below

3
On

This worked for me:

func widgetDidBeginEditing() {

    var delay = dispatch_time(DISPATCH_TIME_NOW, Int64(0.1 * Double(NSEC_PER_SEC)))
    dispatch_after(delay, dispatch_get_main_queue()) {
        self.presentViewControllerInWidget(self.settingsViewController)
    }
}
0
On

I guess this is a bug that made it into the Yosemite release. Documentation on widgets is very sketchy at best and it seems there are quite a few oddities in the framework.

When adding a symbolic breakpoint to widgetDidBeginEditing I get two hits when clicking the little edit button, and the edit Button becomes "Cancel". It is supposed to say "Done" though. Only after an "Add" action should it say "Cancel" (Just check out Apple's Weather widget)

Important to say: I am not using the template with the NCWidgetListViewController but my own list implementation.

If anyone finds a proper solution to this problem I'd be very happy!