0

現在、ナビゲーションコントローラー内、タブバーコントローラー内でテーブルビューを使用しています。テーブルビューの詳細ビューを表示しているときに、詳細ビュー間を「スワイプ」したいので、UIViewAnimationsを使用してUISwipeGestureを実装し、右/左にスワイプしました。すべてが機能していますが、少し問題があります...テーブルビューからロードされた詳細ビューを表示しているとき、self.tabBarController要素がここにあります。タブバーがあるので、アクションシートを追加できます。しかし、スワイプすると、self.tabBarControllerはnilになります...理由はわかりません...おそらくナビゲーションコントローラーのせいですか?

これが私のコードです:

- (id) init
{
    if (self = [super init]) {
        CGRect fullScreenRect=[[UIScreen mainScreen] applicationFrame];
        UIScrollView *scrollView=[[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, fullScreenRect.size.width, 367.)];
        scrollView.contentSize=CGSizeMake(320,100);
        scrollView.delegate = self;
        self.view=scrollView;
        self.myView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 367.)];
        self.ButtonSizeM.tag = 0;
        self.ButtonSizeP.tag = 0;
        self.ContentIV = [[UIImageView alloc] init];
    }
    return self;
}

- (void) handleSwipeLeft {
   if (!((self.ancient.tableView.indexPathForSelectedRow.section == ([self.ancient numberOfSectionsInTableView:self.ancient.tableView] - 1)) && (self.ancient.tableView.indexPathForSelectedRow.row == [self.ancient tableView:self.ancient.tableView numberOfRowsInSection:(self.ancient.tableView.indexPathForSelectedRow.section)]-1)))
    {
        NSIndexPath *whereToGo;
        if (self.ancient.tableView.indexPathForSelectedRow.row == [self.ancient tableView:self.ancient.tableView numberOfRowsInSection:(self.ancient.tableView.indexPathForSelectedRow.section)]-1) {
            whereToGo = [NSIndexPath indexPathForRow:0 inSection:(self.ancient.tableView.indexPathForSelectedRow.section)+1];
        }
        else {
            whereToGo = [NSIndexPath indexPathForRow:(self.ancient.tableView.indexPathForSelectedRow.row)+1 inSection:self.ancient.tableView.indexPathForSelectedRow.section];
        }

        CCFASimpleDetail *nextView = [[CCFASimpleDetail alloc] init];
        nextView = [self.ancient tableView:self.ancient.tableView prepareViewForIndexPath:whereToGo];
        [nextView performSelectorOnMainThread:@selector(affichageEnPlace) withObject:nil waitUntilDone:YES];

        float width = self.myView.frame.size.width;
        float height = self.myView.frame.size.height;

        [nextView.view setFrame:CGRectMake(width, 0.0, width, height)];

        [self.view addSubview:nextView.view];
        [UIView animateWithDuration:0.5f delay:0 options:UIViewAnimationCurveEaseInOut animations:^{
                [nextView.view setFrame:self.view.frame];
                [self.myView setFrame:CGRectMake(-width, 0.0, width, height)];
            } completion:^(BOOL finished) {

                [self.myView removeFromSuperview];
                [self.ancient.tableView selectRowAtIndexPath:whereToGo animated:NO scrollPosition:UITableViewScrollPositionTop];
            }
         ];
    }
}

スワイプした後、タブバーを見つけるのを手伝ってもらえますか:)?

4

2 に答える 2

0

追加することで問題を解決しました

[self.ancient.navigationController popViewControllerAnimated:NO];
[self.ancient.navigationController pushViewController:nextView animated:NO];

完了ブロックで !

于 2012-09-07T01:11:04.033 に答える
0

ここにビューを追加すると:

[self.view addSubview:nextView.view];

UINavigation コントローラーはそれを認識せず、navigationBar と tabBar のプロパティを設定しません。

できることは、ビューにそのスーパービュー (self.view になります) を取得させ、そのビューに tabBarController とそこから tabBar を要求することです。

于 2012-09-04T22:43:35.737 に答える