cell在屏幕中的位置
CGRectrectInTableView = [tableView rectForRowAtIndexPath:indexPath];//获取cell在tableView中的位置CGRectrectInSuperview = [tableView convertRect:rectInTableView toView:[tableView superview]];
//方法- (CGRect)convertRect:(CGRect)rect toView:(UIView *)view;意思为将rect由rect所在视图转换到目标视图view中,返回在目标视图view中的rect,所以此句含义为:将cell在 tableView中的位置,由在tableView中的位置,转换到tableView的父视图(即self.view)中,并返回在self.view中的位置
另外,注意:想要获取哪个cell的位置,indexPath就是哪个cell的indexPath,不要认为有indexPath,就写在- (UITableViewCell)tableView:(UITableView)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath方法中,应该根据情况写在合适的方法中,方法中没有indexPath时,可以通过传值代理之类的将之获取到
cell中的控件(比如按钮)在屏幕中的位置
UIWindow* window = [UIApplicationsharedApplication].keyWindow;CGRectrect1 = [sender convertRect:sender.framefromView:self.contentView];//获取button在contentView的位置CGRectrect2 = [sender convertRect:rect1 toView:window];
原文链接:http://blog.csdn.net/ideaspress/article/details/47002895