作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 AppDelegate
类中有一个窗口 DeviceNotFound
。
class AppDelegate: NSObject, NSApplicationDelegate {
let deviceNotFoundWindowController = NSStoryboard(name: "Main", bundle:nil).instantiateController(withIdentifier: "DeviceNotFoundWindowController") as! DeviceNotFoundWindowController
func test() {
if let loadDataVc = NSStoryboard(name: "Main", bundle:nil).instantiateController(withIdentifier: "LoadDataViewController") as? LoadDataViewController
{
self.deviceNotFoundWindowController.contentViewController!.presentViewControllerAsSheet(loadDataVc)
}
}
}
当我调用test
函数将另一个ViewController
显示为工作表时,它显示得像窗口一样。我的 DeviceNotFound
窗口未被阻止。我可以移动它:
最佳答案
哦,发现问题了。因为我从 nib 获得的初始窗口 Controller != deviceNotFoundWindowController
。
关于swift - PresentViewControllerAsSheet 像窗口一样显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40999750/
我的 AppDelegate 类中有一个窗口 DeviceNotFound。 class AppDelegate: NSObject, NSApplicationDelegate { let
我正在尝试为我的主窗口/ View Controller (我使用的是 Storyboard )呈现工作表配置 View (AddSoundEffect),当配置 View Controller 被关
我是一名优秀的程序员,十分优秀!