AlertCategory
@available(swift 4.0)
public enum AlertCategory : UInt8, Codable
Bluetooth Alert Categories
-
Simple Alert: General text alert or non-text alert
Declaration
Swift
case simpleAlert = 0 -
Email: Alert when Email messages arrives
Declaration
Swift
case email = 1 -
News: News feeds such as RSS, Atom
Declaration
Swift
case news = 2 -
Call: Incoming call
Declaration
Swift
case call = 3 -
Missed call: Missed Call
Declaration
Swift
case missedCall = 4 -
SMS/MMS: SMS/MMS message arrives
Declaration
Swift
case textMessage = 5 -
Voice mail: Voice mail
Declaration
Swift
case voiceMail = 6 -
Schedule: Alert occurred on calendar, planner
Declaration
Swift
case schedule = 7 -
High Prioritized Alert: Alert that should be handled as high priority
Declaration
Swift
case highPrioritized = 8 -
Instant Message: Alert for incoming instant messages
Declaration
Swift
case instantMessage = 9 -
String Value for the Enum
Declaration
Swift
public var description: String { get }