3

私はここでばかげたことをしていると確信していますが、それを見ることはできません。DialogViewController をナビゲーション スタックにプッシュすると、[戻る] ボタンが表示されなくなります。

私のプッシュコードはこれです:

//launch an inspection VC
var vc = new FacilityInspectionListViewController ();
this.NavigationController.PushViewController (vc, true);

私のダイアログコードはこれです:

    public FacilityInspectionListViewController () : base(UITableViewStyle.Plain, null) 
    {
        var root = new RootElement ("Root") 
        {
            new Section () 
            {
                new StringElement ("Facility 1", () => {DoSomething();}),
                new StringElement ("Facility 2", () => {DoSomething()}),
                new StringElement ("Facility 3", () => {DoSomething();})
            }
        };

        base.Root = root;
    }

しかし、これを行うと、プッシュされた画面には [戻る] ボタンがありません:

スクリーンショット

ここで何が間違っていますか?

4

1 に答える 1