摘要: 今天这篇是UI的最后一篇了,后面再整理网络篇 知识点 1.UIStoryBoard介绍 2. UIStoryBoard的界面跳转 3. UIStoryBoard界面之间的传值 UIStoryBoard介绍 UIStoryBoard是你可以用来定义用户界面的一种新的方式,像xib。与xib不同的是它可 阅读全文
posted @ 2017-02-14 22:46 CUG 阅读(1165) 评论(0) 推荐(0) 编辑
摘要: 知识点: 1.UITabBarController使用 2.UITabBarItem使用 关于TabBarController除了本次整理的内容,有兴趣的可以看下我以前发过的这两篇,在实际开发中很实用的东西. RDVTabBarController的基本使用 以及tabbar的防止双点击方法 从ta 阅读全文
posted @ 2017-02-09 21:33 CUG 阅读(654) 评论(0) 推荐(0) 编辑
摘要: 知识点: 1.UIScrollView使用 2.UIPageControl使用 @interface RootViewController ()<UIScrollViewDelegate> UIScrollView使用 1.UIScrollView创建 2.常用属性 1)滚动内容大小 2)是否分页滚 阅读全文
posted @ 2017-02-08 22:24 CUG 阅读(686) 评论(0) 推荐(2) 编辑
摘要: 知识点: 1.UITableView搜索功能 <UITableViewDataSource,UITableViewDelegate,UISearchResultsUpdating,UISearchControllerDelegate> UITableView搜索功能 1.UISearchContro 阅读全文
posted @ 2017-02-08 21:42 CUG 阅读(1779) 评论(0) 推荐(1) 编辑
摘要: 知识点: 1.UITableView使用 2.UITableView分段功能 3.UITableViewCell重用机制 UITableView使用 1.UITableView作用 2.UITableView创建 - (id)initWithFrame:(CGRect)frame style:(UI 阅读全文
posted @ 2017-02-07 21:38 CUG 阅读(504) 评论(2) 推荐(0) 编辑
摘要: 之前忘了把这些整理出来,现在补充一下,应该放在前面学习的 知识点: 1.UI的初步认识 2.UIWindow 3.UIView 4.UIlabel UI的初步认识 1.什么是UI(*) UI即User Interface(用户界面)的简称。UI设计则是指对软 件的人机交互、操作逻辑、界面美观的整体设 阅读全文
posted @ 2017-01-21 23:02 CUG 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 知识点: 1.UIView的简单动画 2.UIView层次关系 3.UIImageView的使用 4.简单的手势操作 5.UIView 停靠模式 UIView的简单动画 1.UIView坐标系统 1)UIView相对于父视图的坐标系统 2.UIView的frame,center,bounds关系 f 阅读全文
posted @ 2017-01-21 22:13 CUG 阅读(1077) 评论(0) 推荐(0) 编辑
摘要: 知识点: 1.UINavigationController 2.UINavigationItem 3.UINavigationBar 4.UINavigationController视图切换 UINavigationController 1.什么是导航控制器 作用:管理视图控制器 2.UINavig 阅读全文
posted @ 2017-01-19 22:25 CUG 阅读(375) 评论(0) 推荐(1) 编辑
摘要: UITextField使用 1.创建方式 例: UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20, 20, 130, 30)]; 2.常用方法和属性 1)边框样式 @property(nonatomic) UITe 阅读全文
posted @ 2017-01-19 19:58 CUG 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 这篇知识很重要,最好全掌握: 知识点: 1.UIViewController基本认识 2.UIViewController之间的切换 3.UIViewController生命周期 4.多个Controller之间的数据如何交换 UIViewController 1.MVC设计模式 MVC设计模式:M 阅读全文
posted @ 2017-01-18 00:28 CUG 阅读(670) 评论(0) 推荐(0) 编辑