iOS UI Kit — Release Notes

Release history for the EnableX iOS UI Kit, including new features, improvements, and bug fixes per version.

v2.2.3 — May 22, 2026
Latest Release

This is the current stable release. Download: Enx_UIKit_iOS.xcframework_2.2.3.zip

v2.2.3 introduces an improved UI specifically for 1-to-1 audio-only calls. When a participant joins without video, the kit now renders a purpose-built calling screen showing the remote participant's name and avatar over a gradient background, with overlay buttons for microphone toggle and exit. This replaces the generic video grid with an experience designed for voice calls.

Audio View Mode — 1-to-1 Audio Calls

Enable the audio call UI with overlay mic-toggle and exit controls by setting isAudioViewMode to true on the EnxSetting shared instance before the session connects:

EnxSetting.shared.isAudioViewMode = true

Customise the calling screen appearance by assigning an EnxAudioViewConfig instance to audioViewConfig:

EnxSetting.shared.audioViewConfig = EnxAudioViewConfig(
    gradientLayer1: UIColor(red: 0.04, green: 0.22, blue: 0.20, alpha: 1),   // top gradient colour
    gradientLayer2: UIColor(red: 0.01, green: 0.08, blue: 0.07, alpha: 1),   // bottom gradient colour
    nameTextColor: .white,                                                     // remote participant name
    sortNameTextColor: .white,                                                 // initials text colour
    sortNameBGColor: UIColor(red: 0.07, green: 0.55, blue: 0.44, alpha: 1)   // initials avatar background
)
Call these APIs before the session starts

Both isAudioViewMode and audioViewConfig must be set before the EnableX session connects. Changes made after the session starts have no effect.

v2.2.2 — October 13, 2025

The framework is distributed as an .xcframework bundle with bundled dSYMs for crash symbolication.

v2.1.11
v2.1.8
v2.1.6 — January 8, 2025
v2.1.3

A major feature release adding collaboration, engagement, and reach capabilities across all session modes.

Collaboration & Engagement

Webinar

Reach

Utilities

v2.1.1
v1.2.2
v1.2