UITransitionView, UIAlertSheet
I'm try开发者_JS百科ing to update an iOS open-source project that has been abandoned in 2008. I've found some references to UITransitionView and UIAlertSheet in the code, but I can't find any documentation on Apple dev center about that. Are they simply deprecated?
Thanks !
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.
UITransitionView and UILayoutContainerView
UIAlertSheet Class Reference
UITransitionView is internal apple framework and not published in SDK..See this thread UIAlertSheet I never heard about..:(
精彩评论