0

UINavigationController に UITableViewController が埋め込まれています。iOS 6 でストーリーボードのみを使用しています。Reports Row をタップすると、右側に素敵なプッシュ アニメーションが表示されます。[自動生成された戻る] ボタンを押すと、ナビゲーションの見出しがフェードして左にアニメーション化されますが、UITableView が突然表示されます。私の目標は、戻るボタンが押されたときの標準のように、 UITableview に標準のプッシュアニメーションを戻すことです。うまくいけば、これはデバッグに役立つ関連コードです。私は完全に途方に暮れています。ナビゲーション ツリーに戻ると、ドリルダウンするすべてのビューで同じ動作が見られます。それらはすべて UITableViewController サブクラスです。

評判ポイントがもう少し増えるまで、ストーリーボードの写真を投稿できません。必要に応じて、階層を確認するのに役立つ写真を誰かに電子メールで送信できます。

私のストーリーボード階層は次のとおりです。

UITabviewController
-UINavigationViewController
--ReportsVC
---AvaliableEquipmentVC
----AvaliableEquipmentDetailVC

ReportsVC.h

#import <UIKit/UIKit.h>
@interface ReportsVC : UITableViewController
@property (strong, nonatomic) NSMutableArray *reportList;
@end

レポートVC.m

#import "ReportsVC.h"
#import "AvaliableEquipment.h"

@interface ReportsVC ()

@end

@implementation ReportsVC

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.reportList = [[NSMutableArray alloc] init];

    // List Reports Here
    [self.reportList addObject:@"Avaliable Equipment"];
    [self.reportList addObject:@"Active Lease Business"];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [self.reportList count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"ReportNameCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    UILabel *reportTitle = (UILabel *)[cell viewWithTag:100];
    NSString *text = [self.reportList objectAtIndex:indexPath.row];
    reportTitle.text = text;
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

    switch (indexPath.row)
    {
        case 0: [self performSegueWithIdentifier:@"AvaliableEquipment" sender:nil]; break;
        case 1: [self performSegueWithIdentifier:@"ActiveLeaseBusiness" sender:nil]; break;
    }
}

私の AvaliableEquipmentVC では、JSON リストを照会して TableView データを取得する以外に、特別なことは何もしていません。ストーリーボードを介して自動生成される戻るボタンを押すと、アニメーションが UITableViewController ReportsVC に戻りません。

4

1 に答える 1

1

OK、私にとって何が悪いのかを見つけました。一番上のオブジェクトである TableViewController には、(void)viewWillAppear メソッドと (void)viewDidAppear メソッドがありました。これらのメソッドでは、 [super viewWillAppear:animated]; を追加する必要がありました。同様に [super viewDidAppear:animated]; それぞれに行を追加します。これにより、アニメーションが再び機能し始めました。カスタムロジックを実行するためにそれらを上書きしたことを忘れていました。

于 2012-12-27T21:25:04.887 に答える