Chatbox and Chat button

  • An object that controls the chatbox, which is where the conversation is displayed, and the chat button.

    See more

    Declaration

    Swift

    @objc
    public final class ChatboxController : NSObject
  • Encapsulate all the configuration options that can be applied to the chatbox.

    Usage: instantiate a default configuration, set the properties you want, and apply them to the chatbox:

    var configuration = ChatboxConfiguration()
    configuration.accentColor = .red
    IAdvizeSDK.shared.chatboxController.setupChatbox(configuration: configuration)
    
    See more

    Declaration

    Swift

    public struct ChatboxConfiguration
  • The image used for the incoming message avatar.

    See more

    Declaration

    Swift

    public enum IncomingMessageAvatar