Modal View Controller Won't Start in Landscape Mode

后端 未结 7 1417
死守一世寂寞
死守一世寂寞 2020-12-10 17:10

I have a navigation based app that has a detail view (UIWebView) with action buttons across the bottom in a UIToolbar. I want to add \'notes\' when the \'notes\' button is

7条回答
  •  Happy的楠姐
    2020-12-10 17:56

    Answer is here:

    https://stackoverflow.com/a/10250747/1449618

    Use the window's root view controller to present:
    
    [self.view.window.rootViewController presentViewController:masterView
                                                      animated:YES
                                                    completion:NULL];
    

提交回复
热议问题