UIViewController1内に配置された水平UITableViewの束があります。タップされているUITableViewCellの位置を見つけたかったのですが、UIViewController1に関して位置を取得したかったのです。だから、ここで私がしたことは、didSelectRowAtIndexPath です。
MyCell *cell = (MyCell *)[tableView cellForRowAtIndexPath:indexPath];
UIView *animatedView = [[UIView alloc] initWithFrame:cell.frame];
[animatedView setFrame:[animatedView convertRect:animatedView.frame toView:self.newsRackController.view]];
ただし、これは正しく変換されていないようです。私は何を間違っていますか?