私はこの方法でローカル通知のアプリケーションを登録しようとしています:
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)、categories:nil))
—
Nekak Kinich
今私は持っています:
—
Nikita Zernov
Could not find an overload '|' that accepts the supplied arguments
申し訳ありませんが、別のアイデアはありません。
—
Nekak Kinich