タップされたcellのtableView上の位置
- (CGPoint)offsetOfCell:(UITableViewCell *)cell
{
// tableViewがどれだけスクロールされたか
CGPoint offset = self.tableView.contentOffset;
CGPoint point = cell.frame.origin;
point.x -= offset.x;
point.y -= offset.y;
return point;
}