是否有可能在没有UIViewController管理UIView的情况下在UIPopoverController中
快速呈现UIView?
目前我有一个“DelegateViewController”,可以传递我的视图.然后我用那个控制器进行演示.但我想知道是否有更简单的方法?
如果你有一个UIView,那么你可以轻松地创建一个普通的UIViewController作为容器.
UIViewController* controller = [[[UIViewController alloc] init] autorelease];
controller.view = myView;
原文链接:https://www.f2er.com/c/119824.html