IOS

关注公众号 jb51net

关闭
首页 > 软件编程 > IOS > iOS overFullScreen fullScreen

iOS overFullScreen与fullScreen区别分析

作者:FieryDragon

这篇文章主要介绍了iOS overFullScreen与fullScreen区别分析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪

overFullScreen与fullScreen区别

overFullScreen

The views beneath the presented content are not removed from the view hierarchy when the presentation finishes.  So if the presented view controller does not fill the screen with opaque content, the underlying content shows through.

当显示结束时,显示内容下面的视图不会从视图层次结构中删除。因此,如果呈现的视图控制器没有用不透明的内容填充屏幕,底层内容就会显示出来。

fullScreen

The views belonging to the presenting view controller are removed after the presentation completes.

属于呈现视图控制器的视图在呈现完成后被移除。

详见Xcode->Window->Developer Documentation

总结

如果需要弹出半透明视图使用overFullScreen,但是由于当显示结束时,显示内容下面的视图不会从视图层次结构中删除,所以页面消失时下面的视图不会出发viewWillAppear等方法。

使用fullScreen,在页面消失会触发下面的视图的viewWillAppear等方法,但是呈现视图控制器的视图在呈现完成后被移除实现半透明时透明部分直接黑屏展示。

🐟与熊掌不可兼得😂😂😂。

以上就是iOS overFullScreen与fullScreen区别分析的详细内容,更多关于iOS overFullScreen fullScreen的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文