CallKitOptions

public struct CallKitOptions : Hashable

With CallKitOptions the client may change the CallKit provider configuration.

  • The localized name of the provider.

    Declaration

    Swift

    public var localizedName: String
  • Declaration

    Swift

    public var includesCallsInRecents: Bool
  • The name of the sound resource in the app bundle to be used for the provider ringtone.

    Declaration

    Swift

    public var ringtoneSound: String?
  • The icon image to be displayed for the provider.

    Declaration

    Swift

    public var iconFileName: String?
  • Declaration

    Swift

    public init(localizedName: String,
                includesCallsInRecents: Bool,
                ringtoneSound: String?,
                iconFile: String?)
  • Declaration

    Swift

    public static func defaultOptions() -> CallKitOptions