VOPhoneNumberFormat
enum VOPhoneNumberFormat {}
Different supported phone number formats. See each for an example formatting.
-
No formatting done. Eg. 1234567890
Declaration
Objective-C
VOPhoneNumberFormatNone = 0Swift
case VOPhoneNumberFormatNone = 0 -
Formatting using E164. Eg. +11234567890
Declaration
Objective-C
VOPhoneNumberFormatE164Swift
case VOPhoneNumberFormatE164 = 1 -
Formatting Internationally. Eg. +1 123-456-7890
Declaration
Objective-C
VOPhoneNumberFormatInternationalSwift
case VOPhoneNumberFormatInternational = 2 -
Formatting Nationally. Eg. (123) 456-7890
Declaration
Objective-C
VOPhoneNumberFormatNationalSwift
case VOPhoneNumberFormatNational = 3 -
Formatting using RFC3966. Eg. tel: + 1-123-456-7890
Declaration
Objective-C
VOPhoneNumberFormatRFC3966Swift
case VOPhoneNumberFormatRFC3966 = 4 -
Used to get a count of VOPhoneNumberFormat
Declaration
Objective-C
NumberOfVOPhoneNumberFormatsSwift
case NumberOfVOPhoneNumberFormats = 5
View on GitHub
VOPhoneNumberFormat Enumeration Reference