在UISplitViewController细节中推送UITabBarController - 导航栏

时间:2017-03-26 11:21:05

标签: ios cocoa-touch uinavigationcontroller uitabbarcontroller uisplitviewcontroller

我有一个UISplitViewController设置,在iPad上工作得很好,但在iPhone上有问题。

主层次结构:string str = "<A><B>Apple</B><B>Mango</B></A>"; using (XmlReader xmlReader = XmlReader.Create(new StringReader(str))) { while (!xmlReader.EOF) { if (xmlReader.NodeType == XmlNodeType.Element && xmlReader.Name == "B") { XElement xElement = XNode.ReadFrom(xmlReader) as XElement; Console.WriteLine(xElement.ToString()); // This will print the tag Console.WriteLine(xElement.Value); // This will print the tag value } else { xmlReader.Read(); } } } &gt; UITabBarController&gt; UINavigationController

详细信息层次结构:UITableViewController&gt; UITabBarController&gt; UINavigationController

我在master中选择了一个tableview项,它会推送详细信息tabbarcontroller,但是它会产生两个导航栏。

原始主导航栏,然后在详细导航栏下方。我明白,因为我没有推动UITableViewController它不会自动替换导航栏。

那我怎么解决这个问题呢?感谢。

0 个答案:

没有答案