我正在開發iPad應用程序。在這個應用中我顯示的ViewController在presentViewController使用這個下面的代碼UIPopoverController不呈現在「presentViewController」
[self presentViewController:vc animated:YES completion:nil];
之後我顯示在瞭解僱「VC」是presentviewController使用UIPopoverController彈出。所以我得到以下問題Warning: Attempt to present <SelectionListViewController: 0x7b439960> on <ViewController: 0x7a341e00> which is already presenting (null)
因此,彈出窗口不顯示在ViewController上。如何解決這個問題。這是現在我需要解決這個問題的項目。
由於提前
我試過了。但它不起作用。 – iSara
你是否試過這個完整的代碼? –
試試這個 dispatch_async(dispatch_get_main_queue(),^ {presentpriceViewController:vc animated:YES completion:nil]; }); –