MonoTouch.Dialog icon indicating copy to clipboard operation
MonoTouch.Dialog copied to clipboard

DialogViewController::ActivateController() limitation

Open snailium opened this issue 9 years ago • 0 comments

Current implementation requires parent controller to be Navigation Controller. But it is not necessary.

It can be revised to

        if (this.NavigationController != null)
            this.NavigationController.PushViewController (controller, true);
        else
            PresentViewController (controller, true, null);

to remove the limitation.

snailium avatar May 31 '15 09:05 snailium