私はInfo.plist
に設定した3Dフォースタッチアクションを持っています。 3Dアクションが実行されているときに、ストーリーボードIDを与えたビューコントローラが表示され、AppDelegate
でこれを行う必要があることを今思い出してください。AppDelegateからViewControllerを表示
私はperformActionForShortCutItem
機能を使用しました。
func application(_ application: UIApplication, performActionFor shortcutItem: UIApplicationShortcutItem, completionHandler: @escaping (Bool) -> Void) {
if let tabVC = self.window?.rootViewController as? UITabBarController {
if shortcutItem.type == "Hausaufgaben" {
tabVC.selectedIndex = 1
tabVC.performSegue(withIdentifier: "gotoHausaufgaben", sender: nil)
}
}
}
参照のためのあなたのコードを入力してください。 – raidfive