博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
What is a UINavigationTransitionView
阅读量:4542 次
发布时间:2019-06-08

本文共 1333 字,大约阅读时间需要 4 分钟。

**AFAIK UINavigationTransitionView is a class used to animate UINavigationController child views around. It usually contain one or two UIViewControllerWrapperView's , each of these containing your actual UIViewController.view If you subclass UINavigationController and override pushViewControllerAnimated: , you can log the hierarchy before and after calling [super pushViewControllerAnimated:], you'll notice the VC being pushed rect change from {0, 20, 320, 480} to {-320, 20, 320, 480} Although its nice to understand how it works, as it is private API, its very likely to change between iOS versions, so you should not make your rotation solution based on this behavior. Post a new question with the actual rotation issue and we can help you solve it, without using private API

 

**Very often, Apple uses private classes inside of public classes, to manage internal behavior. This is one of those cases. There's no public class called UINavigationTranstionView. I'd either look elsewhere for the bug, or file a radar, if you are convinced that Apple's at fault. If you decide to continue to look at your code, consider posting some of that code and a description of your issue, here so we can help.

 

转:http://stackoverflow.com/questions/11510748/what-is-a-uinavigationtransitionview

转载于:https://www.cnblogs.com/ygm900/p/4573515.html

你可能感兴趣的文章
通过httpClient请求文件流(普通文件和压缩文件)示例
查看>>
max10之pll时钟源切换
查看>>
Android框架总结
查看>>
vue基础课堂一
查看>>
1Password:让一个密码记住所有密码
查看>>
Python 元组
查看>>
Android——四大组件、六大布局、五大存储
查看>>
Socket实现原理和机制
查看>>
luogu1265 公路修建
查看>>
WORD2003电子签名插件(支持手写、签章)
查看>>
Google开源项目二维码读取与生成工具ZXing
查看>>
Android使用默认样式创建View的几个姿势
查看>>
多标记学习--Learning from Multi-Label Data
查看>>
leetcode 47. 全排列 II
查看>>
1083 List Grades (25)
查看>>
使用iptables和tc对端口限速
查看>>
14、反射(reflect)
查看>>
树-哈夫曼树
查看>>
异步复位同步释放
查看>>
【Spark2.0源码学习】-7.Driver与DriverRunner
查看>>