美文网首页
如何获取控件相对于屏幕的坐标

如何获取控件相对于屏幕的坐标

作者: 罗小耳 | 来源:发表于2016-03-24 10:51 被阅读1599次

一句核心代码搞定:“控件名称 + convertRect: 控件坐标 + toView: 屏幕”

// 获取相对于self.view的坐标
DistributTimeCell *timeCell = [_flowerCheckTable cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:3]];
    CGRect cellFrame = [timeCell.timerBtn convertRect:timeCell.timerBtn.frame toView:self.view];

// 获取相对于屏幕的坐标
UIWindow * window=[[[UIApplication sharedApplication] delegate] window];
    CGRect rect=[bView convertRect: bView.bounds toView:window];

相关文章

网友评论

      本文标题:如何获取控件相对于屏幕的坐标

      本文链接:https://www.haomeiwen.com/subject/yarrlttx.html