跳到主要内容

主题模式

Global IM UIKit 支持了浅色、暗色、和跟随系统三种全局主题。在 RCIMKitConfig 中可以通过 themeType 属性设置主题模式:

/// 主题类型
typedef NS_ENUM(NSUInteger, RCThemeType) {
RCThemeTypeAny = 0, /// 跟随系统
RCThemeTypeLight = 1, /// 浅色
RCThemeTypeDark = 2, /// 深色
};

Global IM UIKit 的默认主题模式是 RCThemeTypeAny(跟随系统)。

浅色主题

设置全局主题为浅色模式。

[RCIMKitConfig shared].themeType = RCThemeTypeLight;

(width=220) (width=220) (width=220)

深色主题

设置全局主题为深色模式。

[RCIMKitConfig shared].themeType = RCThemeTypeDark;

(width=220) (width=220) (width=220)