1

我想在 UITabViewController 中使用 DialogViewController。

问题:嵌套元素不显示导航栏,因此无法返回。

当我将我的类(从 DialogViewController 继承)推送到 UINavigationController 时,行为是正确的。如果我在 UITabViewController 的选项卡中使用相同的类(即使使用底层 UINavigationController),则行为是错误的。

谁能帮我吗?

4

1 回答 1

5

虽然这个问题没有一些代码示例的帮助,但我做了一个小例子希望能解决你的问题。对于此示例,我使用了 Xamarin.iOS 附带的选项卡式应用程序模板并将其命名为 TabbingTest。

以下代码位于 AppDelegate 中。更改FinishedLaunching方法以包含:

public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
    window = new UIWindow (UIScreen.MainScreen.Bounds);

    var viewControllers = new UIViewController[]
    {
        CreateTabFor("Test", "first", new TestDialogController ()),
        CreateTabFor("Second", "second", new SecondViewController ()),
    };

    tabBarController = new UITabBarController ();
    tabBarController.ViewControllers = viewControllers;
    tabBarController.SelectedViewController = tabBarController.ViewControllers[0];

    window.RootViewController = tabBarController;
    window.MakeKeyAndVisible ();

    return true;
}

然后添加以下方法:

private int _createdSoFarCount = 0;

private UIViewController CreateTabFor(string title, string imageName, UIViewController view)
{
    var controller = new UINavigationController();
    controller.NavigationBar.TintColor = UIColor.Black;
    var screen = view;
    SetTitleAndTabBarItem(screen, title, imageName);
    controller.PushViewController(screen, false);
    return controller;
}

private void SetTitleAndTabBarItem(UIViewController screen, string title, string imageName)
{
    screen.Title = NSBundle.MainBundle.LocalizedString (title, title);
    screen.TabBarItem = new UITabBarItem(title, UIImage.FromBundle(imageName),
                                         _createdSoFarCount);
    _createdSoFarCount++;
}

创建一个名为 TestDialogController 的类并将以下代码粘贴到其中。

using System;
using MonoTouch.Dialog;
using MonoTouch.UIKit;

namespace TabbingTest
{
    public class TestDialogController : DialogViewController
    {
        public TestDialogController (): base(UITableViewStyle.Plain,null,false)
        {       
            var root = new RootElement ("Tabbing test"){
                new Section (){
                    new RootElement ("First level", 0, 0) {
                        new Section (null, "This is the first level."){
                            new RootElement ("Second level", 0, 0) {
                                new Section (null, "This is the second level."){
                                    new BooleanElement ("Flipflops", false)
                                }
                            }
                        }
                    }}
            };

            this.Root = root;
        }
    }
}

现在运行应用程序。您可以看到,即使是嵌套元素也能很好地显示在导航栏中。即使是多级嵌套。

于 2013-05-11T16:45:23.103 回答