
iOS
lacorey
这个作者很懒,什么都没留下…
展开
-
iOS UINavigationController与UITabBarController的组合使用
1.导航类型 UINavigationController 适用于父子页面的跳转 UITabBarController 适用于平级页面的跳转 2.presentViewController / dismissViewControllerAnimated和pushViewController / popViewController (1)只有从UINavigationControll...2014-07-17 17:09:30 · 223 阅读 · 0 评论 -
iOS开发问题随记
学习iOS开发中的一些随记,以备忘了 (1)当出现头文件找不到报错时,选择Build Settings -> Search Paths -> Header Search Paths,加入依赖库的相对路径 (2)添加依赖库:Build Phases -> Link Binary With Libraries ,点击"+"号添加 (3)可在项目预编译的Suppo...原创 2014-08-08 11:21:09 · 147 阅读 · 0 评论 -
iOS view的frame和bounds的区别
详情:http://blog.youkuaiyun.com/mad1989/article/details/8711697 总结如下: (1)frame: 该view在父view坐标系统中的位置和大小。(参照点是,父亲的坐标系统) bounds:该view在本地坐标系统中的位置和大小。(参照点是,本地坐标系统,就相当于自己的坐标系统,以0,0点为起点),除了手动设置bounds,默认是以0,...原创 2014-09-12 16:49:37 · 173 阅读 · 0 评论