0
DeviceNotFound
私のAppDelegate
クラスにウィンドウがあります。presentViewControllerAsheetはウィンドウのように見える
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)
}
}
}
私はそれが窓のように表示され、シートなどの別のViewController
を表示するtest
関数を呼び出します。私のDeviceNotFound
ウィンドウはブロックされません。私はそれを移動することができます。