- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
目前,我有一个带有 MasterViewController 和 DetailViewController 的 SplitViewController。我想知道是否有办法拥有更多 DetailViewController。现在,我在左侧的 tableView 中有一个项目列表,如果您单击它们,它们将进入全屏 View 。当单击时,如何才能让它显示在 Split View右侧的面板内?那么引用这张图片 - 我怎样才能让我的 View 像细节部分中的黄色一样显示?现在,当我单击“黄色”时,黄色会全屏显示,而不是细节。 http://2uagoo1zzsoo4bcz3347bs2y.wpengine.netdna-cdn.com/wp-content/uploads/2012/08/Image003.png
额外信息:
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if indexPath.row == 0 {
let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let vc: UINavigationController = storyboard.instantiateViewControllerWithIdentifier("newViewController") as! UINavigationController
self.presentViewController (vc, animated: true, completion: nil)
} else if indexPath.row == 3 {
let storyboardTwo: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
let vcTwo: UINavigationController = storyboardTwo.instantiateViewControllerWithIdentifier("newViewController4") as! UINavigationController
self.presentViewController(vcTwo, animated: true, completion: nil)
}
最佳答案
我相信您需要使用 show showDetailViewController 方法:
将指定的 View Controller 呈现为分割 View 界面的辅助 View Controller 。
func showDetailViewController(_ vc: UIViewController,
sender sender: AnyObject?)
所以在你的情况下它会更像这样使用。在didSelectRowAtIndexPath函数中:
{
let vc:UIViewController
if indexPath.row == 0 {
let storyboard: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
vc: UINavigationController = storyboard.instantiateViewControllerWithIdentifier("newViewController") as! UINavigationController
} else if indexPath.row == 3 {
let storyboardTwo: UIStoryboard = UIStoryboard(name: "Main", bundle: nil)
vc: UINavigationController = storyboardTwo.instantiateViewControllerWithIdentifier("newViewController4") as! UINavigationController
}else {
// handle this case
vc = ...
}
// Grab the Split View Controller
let splitVC = // get Split View Controller
splitVC.showDetailViewController(vc,sender:nil)
}
关于ios - 使用 UISplitViewController 的多个 DetailViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33130229/
我知道 UISplitViewController 只能用作根 Controller 。但是否可以从一个分割 View 转到另一个分割 View ? 喜欢加载具有不同数据和布局的详细 View 和主视
然后将其合并到垂直 View 中?这是来自 IMDB 应用程序的示例。 http://img39.imageshack.us/img39/5636/imdb2.jpg http://img39.ima
iOS 5.1 中与 UISplitViewController 相关的新行为应用程序似乎正在拦截 UISlider产生不良结果的运动。这可能也适用于 UISegmented控件和任何其他处理从左到右
我有一个 UISplitViewController,并尝试从 MasterViewController 获取事件并完全更改 DetailViewController。据我了解,这基本上可以通过执行以
每当用户在iPad的UIsplitView中从横向 View 切换到纵向 View 时,我都希望使弹出窗口 View 可见。虽然用户可以通过单击条形按钮使其可见,但我希望此操作对于纵向模式是自动的。
我最近遇到了一个问题。我的iPad应用程序某种程度上阻止了iPad自动旋转。我的应用程序加载了一个UISplitView,这两个 View Controller 都为shouldAutorotateT
我正在开发一个 iPadOS 应用程序,我在其中使用了 UISplitViewController。到目前为止,我一直在使用旧的 API 并手动处理所有内容(包括 displayModeButtonI
我正在尝试将 splitview Controller 添加为 subview Controller 。父 View Controller 是导航 Controller 。父 View Control
我在我的应用程序中使用 MGSplitViewController 库。直到 iOS7 都可以正常工作,但是对于 iOS8 来说,它不能按预期工作,原因是iOS8中 UIPopoverControll
我有一个根 UISplitViewController,其中包含与 DetailViewController 相关的 UINavigationController。 DetailViewControl
我在让 UISplitViewController 在通用应用程序中工作时遇到问题,我已经对 iPhone 部分进行了编码。作为一种故障排除方法,我决定从一个新项目开始,并尝试执行导致问题的一个操作,
我想在纵向模式下创建一个 UISplitViewController,就像在“设置”应用程序中一样。我该怎么做? 最佳答案 有点晚了,还看一下MGSplitViewController作者:马特·格梅
如何在横向模式下隐藏splitviewcontroller的detailView中的导航Bar? 在详细 View 中,我尝试过这样 self.navigationController.navigat
在我的 iPad 应用程序中,我使用带有两个 UINavigationControllers 作为主控和细节的 UISplitViewController。在 Potrait 中,我希望通过 UIPo
在我的 iPad 应用程序中。我正在处理 UISplitViewController .在 DetailViewController的 UISplitViewController有按钮。当按下该按钮时
我想知道是否可以使用带有按钮的普通 ViewController,当您单击按钮时,它会显示一个新的 Controller ,该 Controller 分为两个带有 uisplitviewcontrol
我设置了一个非常简单的 iOS splitView Controller 项目,它有一个非常奇怪的错误。如果您以横向模式启动应用程序,请单击一个按钮以打开另一个 View ,旋转到纵向,然后返回到起始
抱歉,如果之前已经发布过此内容,我浏览了 Apple Docs 等,但找不到有关 UISplitViewController 工作原理的良好解释。 我问这个问题是因为我为 UINavigationBa
我有一个带有 SplitView 的应用程序,可让您将公司添加到数据库中。在 masterView 中,公司显示其各自的公司名称。点击其中一家公司会向我显示“viewCell”中的地址(实际上不是单元
我们正在使用 UISplitViewController。当不处于“分割模式”时显示详细 View Controller 时,屏幕顶部会出现一个灰色条。有谁知道为什么会发生这种情况。在分割 View
我是一名优秀的程序员,十分优秀!