我正在尝试通过以下方式为本地通知注册我的应用程序:
UIApplication.sharedApplication().registerUserNotificationSettings(UIUserNotificationSettings(forTypes: UIUserNotificationType.Alert | UIUserNotificationType.Badge, categories: nil))
在Xcode 7和Swift 2.0中,出现错误Binary Operator "|" cannot be applied to two UIUserNotificationType operands
。请帮我。
2
带有“()”的符号对我有用UIApplication.sharedApplication()。registerUserNotificationSettings(UIUserNotificationSettings(forTypes:(UIUserNotificationType.Alert | UIUserNotificationType.Badge),类别:无))
—
Nekak Kinich 2015年
现在我有:
—
Nikita Zernov
Could not find an overload '|' that accepts the supplied arguments
我没有别的主意,对不起。
—
Nekak Kinich 2015年