摘要: ***************基本图像绘制 画线#import "HMLineView.h"@implementation HMLineView- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; i... 阅读全文
posted @ 2015-08-31 17:51 iso 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 7> 手势识别 使用UIImageView原因:之前既能看见图片,又能监听点击的只有UIButton,学了手势,我们的UIImageView也可以。 * tap(代理:左边不能点,右边能点) * longPress(allowableMovement:触发之前,最大的移动范围) > 默认调用两次,开... 阅读全文
posted @ 2015-08-31 15:50 iso 阅读(281) 评论(0) 推荐(0) 编辑
摘要: ******HMDrawViewController.m#import "HMDrawViewController.h"@interface HMDrawViewController ()@property (nonatomic, assign) BOOL isDraging;@end@implem... 阅读全文
posted @ 2015-08-31 15:43 iso 阅读(250) 评论(0) 推荐(0) 编辑
摘要: ***hitTest 获取最合适的点@implementation HMGreenView- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{ NSLog(@"%s",__func__);}// 获取 最合适的 ... 阅读全文
posted @ 2015-08-31 15:32 iso 阅读(200) 评论(0) 推荐(0) 编辑
摘要: *******view 一些方法#import "HMView.h"@implementation HMView// 一个完整的触摸过程// touchesBegan -> touchesMoved -> touchesEnded/* NSArray 集合 有序 NSSet 无序 *//... 阅读全文
posted @ 2015-08-31 15:23 iso 阅读(241) 评论(0) 推荐(0) 编辑