码迷,mamicode.com
首页 > 其他好文 > 详细

判断某个点是否在某个view上

时间:2014-11-12 19:38:16      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:io   sp   on   log   bs   as   nbsp   ui   c   

-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

{

    UITouch *touch = [touches anyObject];

    CGPoint pt = [touch locationInView:self.view];

    

    if (!CGRectContainsPoint([self.view frame], pt)) {

        NSLog(@"pt不在self.view");

    }else{

        NSLog(@"ptself.View");

    }

}

判断某个点是否在某个view上

标签:io   sp   on   log   bs   as   nbsp   ui   c   

原文地址:http://www.cnblogs.com/mgbert/p/4093232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!