点击UITableView Cell 上面按钮 ,获取在整个屏幕中的位置

以下步骤写在 cell上button的点击事件中

UITableViewCell*cell=(UITableViewCell*)btn.superview.superview;

NSIndexPath *indexPath = [yourTab indexPathForCell:cell];

CGRect rectInTableView = [yourTab rectForRowAtIndexPath:indexPath];

CGRect rect = [yourTab convertRect:rectInTableView toView:[yourTab superview]];

你可能感兴趣的:(点击UITableView Cell 上面按钮 ,获取在整个屏幕中的位置)