2016-01
2016-02
frame 和 bounds 区别
- 设置父 View 的 bounds 的原点,本质是将父 View 的左上角顶点改为 bounds 的原点值
- 快速输出 frame 和 bounds:NSStringFromCGRect(view.frame)
- bounds 比其 frame 大或小的影响
横屏之后,播放器 Controller 的 view 的 frame 的 size 为(320,480),而 bounds 的 size 为(480,320),这是因为横屏对播放器 Controller 的 view 应用了 transform,应用了 transform 之后 frame 不变,但是 bounds 会改变
In addition the frame property’s values are undefined if the view has any transform other than the identity transform. Rotating a view into landscape mode applies a transform to the view so it is not safe to rely on frame values for an app in landscape mode.
如何成为一名入门级 iOS 开发者
调试过程使用”thread return”or “thread return YES”来 return 函数
SVN 合并分支