爱程序网

获取cell中的button在整个屏幕上的位置

来源: 阅读:

编写cell中得button点击事件

- (IBAction)showButtonClick:(id)sender

{

    UIButton *button = (UIButton *)sender;

    

    UIWindow* window = [UIApplication sharedApplication].keyWindow;

    CGRect rect1 = [button convertRect:button.frame fromView:self.contentView];     //获取button在contentView的位置

    CGRect rect2 = [button convertRect:rect1 toView:window];         //获取button在window的位置

    CGRect rect3 = CGRectInset(rect2, -0.5 * 8, -0.5 * 8);          //扩大热区

 

    //rect3就是最终结果。

}

关于爱程序网 - 联系我们 - 广告服务 - 友情链接 - 网站地图 - 版权声明 - 人才招聘 - 帮助