0
点赞
收藏
分享

微信扫一扫

UITransitionView and UILayoutContainerView 详解

素的盐 2023-05-22 阅读 16


What is UITransitionView?What is UILayoutContainerView?Will I get in trouble for adding subviews to them?

UITableView which is inside of a UINavigationController which is inside of a UITabBarController.UITransitionView I got by asking for the superview of the table view. UILayoutContainerView I got by asking for the superview of UITransitionView.

They are both internal views used by Apple and not published in the SDK.

It's difficult to say exactly what Apple will or won't do however, adding a view to an undocumented view you retrieve from a superView message is not contentious. What you should not do (or be careful if you do do) is make assumptions about the view you are adding to. Specifically its class but even basic things like the fact that it even exists.

What are you trying to do? There may be a simpler way - like adding your view directly to the app's UIWindow.

http://stackoverflow.com/questions/781342/uitransitionview-and-uilayoutcontainerview

举报

相关推荐

HTTP详解、Tomcat详解

Python字典知识详解,操作详解

RAID详解

详解StringTable

UML详解

缓存详解

0 条评论