原理很简单,监听view中touch的一系列事件,当判定手指位置在某个按钮附近的时候则判断此按钮选中,并画出线。效果图如下:你可以在NineGridUnlockView.m文件中方法touchesEnded:withEvent:的最后添加自己的代码来决定画线完成后来做什么。 (当前工程还没有加入委托...
分类:
移动开发 时间:
2014-08-19 18:11:55
阅读次数:
199
视图翻转切换效果12345678910111213141516@implementation FlipView- (void) touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event {// Start Animation BlockCGCont...
分类:
其他好文 时间:
2014-08-01 10:45:41
阅读次数:
221
//点击其他地方,键盘收起- (void)touchesEnded:(NSSet *)touches
withEvent:(UIEvent *)event{ [super touchesEnded:touches withEvent:event];
[self.viewendEditing:YE.....
分类:
其他好文 时间:
2014-06-16 06:58:58
阅读次数:
163
//一个完整的触摸过程:touchesBegan -> touchesMoved
-> touchesEnded/***触摸开始(手指刚碰到view)*/- (void)touchesBegan:(NSSet*)touches
withEvent:(UIEvent*)event{// event.....
分类:
其他好文 时间:
2014-06-06 20:42:54
阅读次数:
215