[1]事件的基本概念
UIEvent:事件,是由硬件捕捉的一个表示用户操作设备的对象。
分三类:触摸事件、晃动事件、远程控制事件
触摸事件:用户通过触摸设备屏幕操作对象、输入数据。支持多点触摸,包含1个到多个触摸点
UIView支持触摸事件(因为继承于UIResponder),而且支持多点触摸。
需要定义UIView子类,实现触摸相关的方法。
t...
分类:
移动开发 时间:
2014-11-09 18:10:37
阅读次数:
235
// MHTAppDelegate.h// TestCa// Copyright (c) 2014年 Summer. All rights reserved.#import@interface MHTAppDelegate :UIResponder @property (retain,nonatom...
分类:
其他好文 时间:
2014-11-06 21:24:59
阅读次数:
152
今天有空,就把UIResponder的职责链图上传一下 如果不理解职责链的朋友,请参考:http://www.cnblogs.com/langtianya/p/4060941.html
分类:
移动开发 时间:
2014-10-30 01:41:47
阅读次数:
154
1.响应者对象iOS中不是任何对象都能处理事件,只有继承了UIResponder的对象才能接收并处理事件,我们称之为“响应者对象”。UIApplication、UIViewController、UIView都继承自UIResponder,因此他们都是响应者对象,都能够接收并处理事件。2.UIResp...
分类:
移动开发 时间:
2014-10-20 22:59:51
阅读次数:
353
navigation同理:-(UIViewController*)viewController{for(UIView*next=[selfsuperview];next;next=next.superview){UIResponder*nextResponder=[nextnextResponder];if([nextResponderisKindOfClass:[UIViewControllerclass]]){return(UIViewController*)nextResponder;}}retur..
分类:
其他好文 时间:
2014-10-20 02:14:03
阅读次数:
153
UIView : UIResponder<NSCoding, UIAppearance, UIAppearanceContainer, UIDynamicItem> /** ?*? 通过一个frame来初始化一个UI控件 ?*/ - (id)initWithFrame:(CGRect)frame; // YES:能够跟用户进行交互 @pro...
分类:
其他好文 时间:
2014-10-11 23:13:07
阅读次数:
266
@interface UIView : UIResponder/*** 通过一个frame来初始化一个UI控件*/- (id)initWithFrame:(CGRect)frame;// YES:能够跟用户进行交互@property(nonatomic,getter=isUserInteractio...
分类:
其他好文 时间:
2014-10-03 04:10:03
阅读次数:
260
- (UIViewController*)viewController{ for (UIView* next = [self superview]; next; next = next.superview) { UIResponder* nextResponder = [next...
分类:
其他好文 时间:
2014-09-30 21:36:20
阅读次数:
154
#import
#import "Reachability.h"
@interface AppDelegate : UIResponder
@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) Reachability *reach;
@end
#import "AppDele...
分类:
其他好文 时间:
2014-09-25 13:08:49
阅读次数:
315
Chapter 12 Touch Events and UIResponder1.As a subclass of UIResponder, a UIView can override four methods to handle the distinct touch events: a finge...
分类:
其他好文 时间:
2014-09-23 01:12:03
阅读次数:
344