Swift 2.0 - Binary Operator "|" cannot be applied to two UIUserNotificationType operands Swift 2.0 - Binary Operator "|" cannot be applied to two UIUserNotificationType operands ios ios

Swift 2.0 - Binary Operator "|" cannot be applied to two UIUserNotificationType operands


In Swift 2, many types that you would typically do this for have been updated to conform to the OptionSetType protocol. This allows for array like syntax for usage, and In your case, you can use the following.

let settings = UIUserNotificationSettings(forTypes: [.Alert, .Badge], categories: nil)UIApplication.sharedApplication().registerUserNotificationSettings(settings)

And on a related note, if you want to check if an option set contains a specific option, you no longer need to use bitwise AND and a nil check. You can simply ask the option set if it contains a specific value in the same way that you would check if an array contained a value.

let settings = UIUserNotificationSettings(forTypes: [.Alert, .Badge], categories: nil)if settings.types.contains(.Alert) {    // stuff}

In Swift 3, the samples must be written as follows:

let settings = UIUserNotificationSettings(types: [.alert, .badge], categories: nil)UIApplication.shared.registerUserNotificationSettings(settings)

and

let settings = UIUserNotificationSettings(types: [.alert, .badge], categories: nil)if settings.types.contains(.alert) {    // stuff}


You can write the following:

let settings = UIUserNotificationType.Alert.union(UIUserNotificationType.Badge)


What worked for me was

//This workedvar settings = UIUserNotificationSettings(forTypes: UIUserNotificationType([.Alert, .Badge, .Sound]), categories: nil)