objective-c – 在UIPopoverController中可以不使用UIViewController呈现UIView吗?

前端之家收集整理的这篇文章主要介绍了objective-c – 在UIPopoverController中可以不使用UIViewController呈现UIView吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有可能在没有UIViewController管理UIView的情况下在UIPopoverController中快速呈现UIView?

目前我有一个“DelegateViewController”,可以传递我的视图.然后我用那个控制器进行演示.但我想知道是否有更简单的方法

解决方法

如果你有一个UIView,那么你可以轻松地创建一个普通的UIViewController作为容器.
UIViewController* controller = [[[UIViewController alloc] init] autorelease];
controller.view = myView;
原文链接:https://www.f2er.com/c/119824.html

猜你在找的C&C++相关文章