获取cell或者cell中的控件在屏幕中的位置

cell在屏幕中的位置

CGRect rectInTableView = [tableView rectForRowAtIndexPath:indexPath];//获取cell在tableView中的位置


CGRect rectInSuperview = [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 = [UIApplication sharedApplication].keyWindow;

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

    CGRect rect2 = [sender convertRect:rect1 toView:window];

你可能感兴趣的:(ios开发入门)