上一页 1 2 3 4 5 6 7 8 9 10 ··· 26 下一页
摘要: // HMViewController.m // 02-事件传递(掌握) #import "HMViewController.h" @interface HMViewController () @end @implementation HMViewController - (void)viewDidLoad { [super viewDidLoad]; // Do a... 阅读全文
posted @ 2017-04-05 15:07 laugh 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 事件是不是系统事件,是系统事件交给代理处理(比如程序启动完成时交给代理开启一个runRoop); 不是系统事件就交给主窗口处理(keyWindow); 主窗口会在视图中找到最合适的视图来处理触摸事件; 事件传递的过程-事件处理的过程(谁能处理)---- 07-hitText练习1 当从storybo 阅读全文
posted @ 2017-04-05 12:56 laugh 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 在iOS中不是任何对象都能处理事件,只有继承了UIResponder的对象才能接收并处理事件。我们称之为“响应者对象” UIApplication、UIViewController、UIView都继承自UIResponder,因此它们都是响应者对象,都能够接收并处理事件 默认View是不支持多手指操 阅读全文
posted @ 2017-04-05 12:36 laugh 阅读(184) 评论(0) 推荐(0) 编辑
摘要: Modal的简单使用 通过storyboard Modal 操作 默认拖出来的控制器有时候是不好使的,删掉自己重新拖一个, 通过stroyboard Modal出来的控制器;只能通过代码dismiss, Segue对象页面跳转: 调用Segue对象的- (void)perform;方法开始执行页面跳 阅读全文
posted @ 2017-04-05 11:38 laugh 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 掌握CALayer的基本属性CALayer和UIView的关系position和anchorPoint的作用CALayer在iOS中,你能看得见摸得着的东西基本上都是UIView,比如一个按钮、一个文本标签、一个文本输入框、一个图标等等,这些都是UIView其实UIView之所以能显示在屏幕上,完全 阅读全文
posted @ 2017-04-05 10:18 laugh 阅读(244) 评论(0) 推荐(0) 编辑
摘要: drawRect:方法的使用 常见图形的绘制:线条、多边形、圆 绘图状态的设置:文字颜色、线宽等 图形上下文状态的保存与恢复(图形上下文栈) 图片裁剪 截图 Quartz 2D是一个二维绘图引擎,同时支持iOS和Mac系统 Quartz 2D能完成的工作 绘制图形 : 线条\三角形\矩形\圆\弧等 阅读全文
posted @ 2017-04-03 10:19 laugh 阅读(239) 评论(0) 推荐(0) 编辑
摘要: iOS中的事件 在用户使用app过程中,会产生各种各样的事件 iOS中的事件可以分为3大类型 在iOS中不是任何对象都能处理事件,只有继承了UIResponder的对象才能接收并处理事件。我们称之为“响应者对象” UIApplication、UIViewController、UIView都继承自UI 阅读全文
posted @ 2017-04-02 21:25 laugh 阅读(177) 评论(0) 推荐(0) 编辑
摘要: // // AppDelegate.m // 09-UITabBarController简单使用 #import "AppDelegate.h" @interface AppDelegate () @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application did... 阅读全文
posted @ 2017-04-01 10:15 laugh 阅读(181) 评论(0) 推荐(0) 编辑
摘要: // // XMGContact.m // 小码哥通讯录 #import "XMGContact.h" @implementation XMGContact static NSString *nameKey = @"name"; static NSString *phoneKey = @"phone"; - (void)encodeWithCoder:(NSCoder *)aCo... 阅读全文
posted @ 2017-03-31 14:55 laugh 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 自定义归档 阅读全文
posted @ 2017-03-31 14:42 laugh 阅读(207) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 26 下一页