摘要: ****#import "HMViewController.h"#import "UIImage+Tool.h"@interface HMViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@end... 阅读全文
posted @ 2015-09-01 17:19 iso 阅读(304) 评论(0) 推荐(0) 编辑
摘要: ****图片 水印#import "HMViewController.h"@interface HMViewController ()@property (weak, nonatomic) IBOutlet UIImageView *imageView;@end@implementation HMV... 阅读全文
posted @ 2015-09-01 17:15 iso 阅读(140) 评论(0) 推荐(0) 编辑
摘要: ***#import "HMView.h"@interface HMView(){ int count;}@property (nonatomic, assign) CGFloat snowY;@end@implementation HMView- (id)initWithFrame:(CGR... 阅读全文
posted @ 2015-09-01 17:10 iso 阅读(124) 评论(0) 推荐(0) 编辑
摘要: ***#import "HMBarView.h"#import "UIColor+Random.h"@implementation HMBarView- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; ... 阅读全文
posted @ 2015-09-01 17:09 iso 阅读(187) 评论(0) 推荐(0) 编辑
摘要: ****#import "HMPieView.h"#import "UIColor+Random.h"@implementation HMPieView- (id)initWithFrame:(CGRect)frame{ self = [super initWithFrame:frame]; ... 阅读全文
posted @ 2015-09-01 17:08 iso 阅读(214) 评论(0) 推荐(0) 编辑
摘要: *************自定义下载的view的方法#import "HMProgressView.h"@interface HMProgressView()@property (nonatomic, weak) UILabel *label;@end@implementation HMProgre... 阅读全文
posted @ 2015-09-01 17:05 iso 阅读(126) 评论(0) 推荐(0) 编辑
摘要: ***************基本图像绘制 画线#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) 编辑