3D Touch快捷键由于意外崩溃而无法正常工作

时间:2016-01-06 14:39:59

标签: ios swift 3dtouch

我正在尝试将 3D Touch Shortcuts 添加到应用程序中,我已设法在主屏幕上的应用程序图标上使用 3DTouch 时显示快捷方式;但是当使用快捷方式时,应用程序在加载时崩溃,我不确定为什么。

我已设法让应用程序加载书签快捷方式,但它不会启动BookmarksViewController,而只是加载InitialViewController

应用程序嵌入在每个标签的UITabBarControllerUINavigationController内。我试图加载的两个视图控制器都在不同的选项卡中,但导航控制器堆栈中的第一个视图。

有谁知道我哪里出错了?

info.plist文件

enter image description here

应用代表

enum ShortcutItemType: String {

case Bookmarks
case Favourites

init?(shortcutItem: UIApplicationShortcutItem) {
    guard let last = shortcutItem.type.componentsSeparatedByString(".").last else { return nil }
    self.init(rawValue: last)
}

var type: String {
    return NSBundle.mainBundle().bundleIdentifier! + ".\(self.rawValue)"
}
}

class AppDelegate: UIResponder, UIApplicationDelegate {

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {  
    if let shortcutItem = launchOptions?[UIApplicationLaunchOptionsShortcutItemKey] as? UIApplicationShortcutItem {
        handleShortcutItem(shortcutItem)
    }

    return true
}

private func handleShortcutItem(shortcutItem: UIApplicationShortcutItem) {

    if let rootViewController = window?.rootViewController, let shortcutItemType = ShortcutItemType(shortcutItem: shortcutItem) {
    let sb = UIStoryboard(name: "main", bundle: nil)

let favouritesVC = sb.instantiateViewControllerWithIdentifier("FavouritesVC") as! FavouritesTableViewController
let bookmarksVC = sb.instantiateViewControllerWithIdentifier("BookmarksVC") as! BookmarksNotesViewController

        switch shortcutItemType {
        case .Bookmarks:
            rootViewController.presentViewController(bookmarksVC, animated: true, completion: nil)
            break
        case .Favourites:
            rootViewController.presentViewController(favouritesVC, animated: true, completion: nil)
            break
        }
    }
}


func application(application: UIApplication, performActionForShortcutItem shortcutItem: UIApplicationShortcutItem, completionHandler: (Bool) -> Void) {
    handleShortcutItem(shortcutItem)
}

}

故事板ID

这些是View Controllers的StoryboardID。

enter image description here enter image description here

2 个答案:

答案 0 :(得分:5)

我想你忘记了'在com.appName.Bookmark

enter image description here

或者你需要删除'来自这里的书签:

enum ShortcutItemType: String {

case Bookmarks
case Favourites

答案 1 :(得分:2)

相反,请尝试使用这样的快捷方式:

if shortcutItem.type == "com.appName.Bookmark"
@available(iOS 9.0, *)
func application(application: UIApplication, performActionForShortcutItem shortcutItem: UIApplicationShortcutItem, completionHandler: (Bool) -> Void) {
    if shortcutItem.type == "com.appName.Bookmark" {

    }
}