我在使用UIPopoverController
時收到警告,在閱讀蘋果文檔後,我明白這是過時的,我們必須使用UIPopoverPresentationController
。請有人幫我替換下面的代碼。UIPopoverController已棄用
UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:viewDownloader];
[popover setPopoverContentSize: CGSizeMake(320, 450)];
在另一種方法
if (popover!=nil && popover.popoverVisible == YES)
[popover dismissPopoverAnimated:YES];
我需要更換這些代碼,但找不到任何等價的。任何幫助讚賞。提前致謝 。
谷歌「UIPopoverPresentationController示例」,你會看到大量的教程。 –
使用UIPopoverPresentationController:https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIPopoverPresentationController_class/ –