iOS 中的 3D 触控
3D touch in iOS
有人可以分享 his/her 通过解析 launchOptions
处理不同 shortcutItems 的最佳实践吗
[launchOptions objectForKey:UIApplicationLaunchOptionsShortcutItemKey].
当您 运行 通过其中一个项目的应用时 - 如何检测到底是哪个项目被点击了?
提前致谢。
您可以使用并获取 UIApplicationShortcutItem
对象。
UIApplicationShortcutItem *shortcutItem = [launchOptions objectForKey:UIApplicationLaunchOptionsShortcutItemKey];
NSDictionary *itemInfo = shortcutItem.userInfo;
一旦你有了可以使用 shortcutItem.userInfo
检查的内容,它包含你在创建时提供的信息字典 UIApplicationShortcutItem
有人可以分享 his/her 通过解析 launchOptions
处理不同 shortcutItems 的最佳实践吗[launchOptions objectForKey:UIApplicationLaunchOptionsShortcutItemKey].
当您 运行 通过其中一个项目的应用时 - 如何检测到底是哪个项目被点击了?
提前致谢。
您可以使用并获取 UIApplicationShortcutItem
对象。
UIApplicationShortcutItem *shortcutItem = [launchOptions objectForKey:UIApplicationLaunchOptionsShortcutItemKey];
NSDictionary *itemInfo = shortcutItem.userInfo;
一旦你有了可以使用 shortcutItem.userInfo
检查的内容,它包含你在创建时提供的信息字典 UIApplicationShortcutItem