1、iOS获取系统版本号,[[[UIDevice currentDevice] systemVersion] floatValue];
2、其中xxx.app就是我们的app应用程序,主要包含了执行文件(xxx.app/xxx, xxx为应用名称)、NIB和图片等资源文件
3、关于ios中的setNeedsDisplay和setNeedsLayout
http://blog.sina.com.cn/s/blog_a573f7990101cdpe.html
4、UIScrollView的contentSize是根据控件数来控制的,如果在contentSize问题上是OK的,那就是控件的frame以及父控件frame的问题,从这两个方面入手基本就没问题了。
5、UISrcollView不像UIView那么纯洁,里面还有一些其他的控件,还有两个UIImgaeView
**2016-01-19 17:45:09.084 ****图说第三版****[2386:1513322]
<UIImageView: 0x79e43620; frame = (310 27.5; 7 2.5); alpha = 0; opaque = NO; autoresize = TM; userInteractionEnabled = NO; layer = <CALayer: 0x79e43750>>**
**2016-01-19 17:45:09.084 ****图说第三版****[2386:1513322]
<UIImageView: 0x79e43b40; frame = (314.5 23; 2.5 7); alpha = 0; opaque = NO; autoresize = LM; userInteractionEnabled = NO; layer = <CALayer: 0x79e43c70>>**
6、self.view.bounds.size.height - 64其实是在上次的初始值的基础上再减64,比说说一开始为480(iPhone 4s)- 64,在self.view.bounds.size.height - 10时,就是self.view.bounds.size.height - 64 - 10
self.view.bounds.size.height是一个静态变量