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

获取屏幕上的某个控件相对位置,尤其是tableviewcell上的某一个控件的相对位置

时间:2017-04-02 23:34:56      阅读:352      评论:0      收藏:0      [点我收藏+]

标签:height   table   int   blog   class   logs   就会   make   tableview   

 

我的需求就是tableviewcell上的按钮,点击就会出现一个弹框:

主要就是获取,所点击的cell上控件的相对位置;

CGPoint buttonCenter = CGPointMake(btn.bounds.origin.x + btn.bounds.size.width/2,
                                           btn.bounds.origin.y + btn.bounds.size.height/2);
CGPoint btnorigin = [btn convertPoint:buttonCenter toView:self.view]; NSLog(@"sender =x: %f\n y :%f",btnorigin.x,btnorigin.y );

这样就能获取了

获取屏幕上的某个控件相对位置,尤其是tableviewcell上的某一个控件的相对位置

标签:height   table   int   blog   class   logs   就会   make   tableview   

原文地址:http://www.cnblogs.com/liuwenqiang/p/6660070.html

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