在tableView 中
獲取cell相對于tableView的frame
CGRect rectInTableView = [tableView rectForRowAtIndexPath:indexPath];
獲取相對于self.view的frame
CGRect rect = [tableView convertRect:rectInTableView toView:[tableView superview]];
在collection中
CGRect cellInCollection = [_collection convertRect:cell.frame toView:_collection];
//獲取cell在當(dāng)前屏幕的位置
CGRect cellInSuperview = [_collection convertRect:cellInCollection toView:self.view];