我有以下代码:
func setupShortcutItems(launchOptions: [NSObject: AnyObject]?) -> Bool { var shouldPerformAdditionalDelegateHandling: Bool = false if (UIApplicationShortcutItem.respondsToSelector("new")) { self.configDynamicShortcutItems() // If a shortcut was launched,display its information and take the appropriate action if let shortcutItem: UIApplicationShortcutItem = launchOptions?[UIApplicationLaunchOptionsShortcutItemKey] as? UIApplicationShortcutItem { // When the app launched at the first time,this block can not called. self.handleShortCutItem(shortcutItem) // This will block "performActionForShortcutItem:completionHandler" from being called. shouldPerformAdditionalDelegateHandling = false } else { // normal app launch process without quick action self.launchWithoutQuickAction() } } else { // Less than iOS9 or later self.launchWithoutQuickAction() } return shouldPerformAdditionalDelegateHandling }
我在UIApplicationShortcutItem.respondsToSelector(“new”)上得到以下“警告”,它说:
Use of string literal for Objective-c selectors is deprecated,use ‘#selector’ instead
UIApplicationShortcutItem.respondsToSelector(#selector(FBSDKAccessToken.new))
但是,由于new()不可用,因此无法编译.
在这种情况下我应该用什么?
解决方法
Xcode 7.3使用swift for iOS9.3 / watchOS2.2 / …
如果您以前使用过这一行代码:
NSNotificationCenter.defaultCenter().addObserver(self,selector: "updateResult:",name: "updateResult",object: nil)
您现在应该使用这一行代码:
NSNotificationCenter.defaultCenter().addObserver(self,selector: #selector(InterfaceController.updateResult(_:)),object: nil)