【转】IOS的处理touch事件处理(依照手指的移动移动一个圆,开发环境用的ios7,storyboard)-- 不错
原文网址:http://blog.csdn.net/baidu_nod/article/details/32934565
先看下页面的效果图:
首先定义这个ball它有两个属性和两个方法:
@property(nonatomic) CGPoint location;
@property(nonatomic) CGFloat length;
-(CGPoint) getCenterPoint;
-(BOOL) isInTheBall:(CGPoint) point;
方法体是:
- //找出ball的中心点
- -(CGPoint) getCenterPoint {
- return CGPointMake((self.location.x+self.length/2), self.location.y+self.length/2);
- };
- //看点point是不是在ball的范围内
- -(BOOL) isInTheBall:(CGPoint) point{
- CGPoint center = self.getCenterPoint;
- float t = (point.x - center.x) * (point.x - center.x);
- float y = (point.y - center.y) * (point.y - center.y);
- float k = sqrtf(t+y);
- if (k < self.length/2) {
- return YES;
- }else {
- return NO;
- }
- };
定义BallView继承UIView
- @property(nonatomic) Ball* ball;
- @property(nonatomic) BOOL isTouch; //表示手指在ball的范围内移动
- @property(nonatomic) CGPoint prePoint; //手指在进入move事件之前的那个点
- - (id)initWithBall:(CGRect)frame aBall:(Ball*) ball; //初始化方法
初始化函数为:
- - (id)initWithBall:(CGRect)frame aBall:(Ball*) ball
- {
- self = [super initWithFrame:frame];
- if (self) {
- // Initialization code
- self.ball = ball;
- }
- return self;
- }
- -(void)awakeFromNib{
- self.backgroundColor = nil;
- self.opaque = NO;
- }
- // Only override drawRect: if you perform custom drawing.
- // An empty implementation adversely affects performance during animation.
- - (void)drawRect:(CGRect)rect
- {
- // Drawing code
- [super drawRect:rect];
- CGContextRef contextRef = UIGraphicsGetCurrentContext();
- [[UIColor whiteColor] set];
- //rect是整个view
- CGContextFillRect(contextRef, rect);
- [[UIColor redColor] set];
- //CGContextAddEllipseInRect不会填充圆圈的内部
- // CGContextAddEllipseInRect(contextRef, CGRectMake(200.0f, 200.0f, 50.0f, 50.0f));
- CGContextFillEllipseInRect(contextRef, CGRectMake(self.ball.location.x,self.ball.location.y,self.ball.length,self.ball.length));
- CGContextStrokePath(contextRef);
- }
我们在viewController里初始化只要:
- -(void) loadView{
- [super loadView];
- Ball* ball = [[Ball alloc] init];
- ball.location = CGPointMake(200.0f, 100.0f);
- ball.length = 80.0f;
- BallView* view = [[BallView alloc] initWithBall:[UIScreen mainScreen].bounds aBall:ball];
- [self.view addSubview:view];
- }
然后在下面在BallView中进行事件处理
- -(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
- NSLog(@"touchesBegan");
- //下面两句知道手指在屏幕上的点的信息
- UITouch* touch = [touches anyObject];
- CGPoint point = [touch locationInView:self];
- if ([self.ball isInTheBall:point]) {
- self.isTouch = YES;
- self.prePoint = point;
- }else{
- self.isTouch = NO;
- }
- NSLog(@"x=%f,y=%f",point.x,point.y);
- }
- -(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
- NSLog(@"touchesMoved");
- if (self.isTouch) {
- CGRect preRect = CGRectMake(self.ball.location.x, self.ball.location.y, self.ball.length, self.ball.length);
- //先用之前的location绘制一遍
- [self setNeedsDisplayInRect:preRect];
- UITouch* touch = [touches anyObject];
- CGPoint point = [touch locationInView:self];
- //cx和cy是手指的偏移量,用他们可以计算出新的location
- float cx = point.x - self.prePoint.x;
- float cy = point.y - self.prePoint.y;
- self.ball.location = CGPointMake(self.ball.location.x + cx, self.ball.location.y+cy);
- CGRect newRect = CGRectMake(self.ball.location.x, self.ball.location.y, self.ball.length, self.ball.length);
- //用新的location绘制一遍
- [self setNeedsDisplayInRect:newRect];
- self.prePoint = point;
- }
- }
- -(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
- NSLog(@"touchesEnded");
- self.isTouch = NO;
- }
代码可以在http://download.csdn.net/detail/baidu_nod/7533317下载
ios-day17-01(UIView的拖拽(跟随手指移动))
原文网址:http://www.ithao123.cn/content-7926067.html
源码下载地址:http://download.csdn.net/detail/liu537192/8544289
【转】IOS的处理touch事件处理(依照手指的移动移动一个圆,开发环境用的ios7,storyboard)-- 不错的更多相关文章
- IOS的处理touch事件处理(按照手指的移动移动一个圆,开发环境用的ios7,storyboard)
先看下页面的效果图: 首先定义这个ball它有两个属性和两个方法: @property(nonatomic) CGPoint location; @property(nonatomic) CGFloa ...
- ios学习笔记(一)Windows7上使用VMWare搭建iPhone开发环境(转)
原文地址:http://blog.csdn.net/shangyuan21/article/details/18153605 我们都知道开发iPhone等ios平台的移动应用时需要使用Mac本,但是M ...
- ios学习笔记(一)Windows7上使用VMWare搭建iPhone开发环境
我们都知道开发iPhone等ios平台的移动应用时需要使用Mac本,但是Mac本都比较昂贵,所以我们可以采用Windows7上利用VMWare安装Mac操作系统的方法来模拟ios开发环境,达到降低成本 ...
- Cocoa Touch事件处理流程--响应者链
Cocoa Touch事件处理流程--响应者链 作者:wangzz 原文地址:http://blog.csdn.net/wzzvictory/article/details/9264335 转载请注明 ...
- Android touch事件处理流程
前面我们看了key事件的处理流程,相信大家对此已经有了新的认识,这篇文章我打算带领大家来看看稍微复杂些的touch 事件的处理流程.说它复杂是因为key事件本身就key down,up,long pr ...
- Android的Touch事件处理机制
Android的Touch事件处理机制比较复杂,特别是在考虑了多点触摸以及事件拦截之后. Android的Touch事件处理分3个层面:Activity层,ViewGroup层,View层. 首先说一 ...
- 移动端的touch事件处理
简要的探讨一下移动端 touch 事件处理几个坑,以及相应的简单处理方法. click 穿透 假设有个弹出层,上面有个关闭的按钮支持 touchend 触发后关闭,若正好下方有个元素支持 click ...
- 自定义View系列教程06--详解View的Touch事件处理
深入探讨Android异步精髓Handler 站在源码的肩膀上全解Scroller工作机制 Android多分辨率适配框架(1)- 核心基础 Android多分辨率适配框架(2)- 原理剖析 Andr ...
- iOS开发教程之:iPhone开发环境搭建
安装条件: 硬件:一台拥有支持虚拟技术的64位双核处理器和2GB以上内存的PC. 注意:运行MAC OS,需要电脑支持虚拟技术(VT),安装时,需要将VT启动,在BIOS中开启. 软件: Window ...
随机推荐
- 解决 ListView 水平滚动条不出现的问题(转载)
问题的原因:http://www.cnblogs.com/nankezhishi/archive/2010/03/17/wpfbug13.html 解决方法:http://www.cnblogs.co ...
- php校验
//校验function filters($grams){ if(get_magic_quotes_gpc()) { $resgram = trim($grams); ...
- (转)Qt Model/View 学习笔记 (六)——在views中选择数据项
在views中选择数据项 概念 用于新的view类中的选择模型比Qt3中的模型有了很大的改进.它为基于model/view架构的选择提供了更为全面的描述.尽管对提供了的views来说,负责操纵选择的标 ...
- 监听EditText
0.得到焦点的时候,作一些处理 public class AbcActivity extends Activity implements OnFocusChangeListener{ @Overrid ...
- PowerDesigner 非数值默认值时会自动增加单引单
在PowerDesigner中,如果默认值是非数值型的,那么 PowerDesigner 会默认加上单引号 因此我们需要把这个默认的单引号干掉,如果是需要设置字符串默认值的时候,就手工加上 单引号 即 ...
- [译] ASP.NET 生命周期 – ASP.NET 上下文对象(八)
使用 HttpResponse 对象 HttpResponse 对象是与 HttpRequest 对象相对应的,用来表示构建中的响应.它当中提供了方法和属性可供我们自定义响应,有一些在使用 MVC 视 ...
- 线形,柱形,条形数据表(百度Echart插件)
[获取资源]进入官网, http://echarts.baidu.com/导航,下载,下拉框下载,常用303k.就是这么简单,就个一个js.[项目使用]新建项目,MyChart具体使用的过程中, ...
- collectionView代码创建
@interface ViewController ()<UICollectionViewDataSource,UICollectionViewDelegateFlowLayout> @p ...
- 【string】KMP, 扩展KMP,trie,SA,ACAM,SAM,最小表示法
[KMP] 学习KMP,我们先要知道KMP是干什么的. KMP?KMPLAYER?看**? 正如AC自动机,KMP为什么要叫KMP是因为它是由三个人共同研究得到的- .- 啊跑题了. KMP就是给出一 ...
- 团体程序设计天梯赛-练习集L2-006. 树的遍历
L2-006. 树的遍历 时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 陈越 给定一棵二叉树的后序遍历和中序遍历,请你输出其层序遍历 ...