1
マイdidSelectRowAtIndexPathを行をクリックした後、スーパーで新しいビューを追加します。私は.hファイルのルートに私のCommentsViewControllerクラスを追加のtableView
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[UIView beginAnimations:@"View Flip" context:nil];
[UIView setAnimationDuration:1.25];
[UIView setAnimationCurve:UIViewAnimationCurveEaseIn];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];
[self.view removeFromSuperview];
[self.view.superview addSubview:commentsViewController.view];
[UIView commitAnimations]; }
。 commentsViewControllerはこのクラスの変数です。クリックするとスーパービューは消えますが、新しいビューは挿入されません。私の問題は何ですか?
から削除実際に私はスーパービューから何かを削除する必要はありません、それは私の間違いです。問題は新しいビューをスーパービューに挿入することです。 – RomanHouse