26 lines
580 B
Objective-C
26 lines
580 B
Objective-C
//
|
|
// XPRoomMessageConstant.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/26.
|
|
//
|
|
#import <Foundation/Foundation.h>
|
|
#import "XPMacro.h"
|
|
|
|
#ifndef XPRoomMessageConstant_h
|
|
#define XPRoomMessageConstant_h
|
|
|
|
#define kRoomMessageMaxWidth (KScreenWidth - 15 - 90)
|
|
|
|
///公屏文本字体的大小
|
|
static CGFloat kRoomMessageDefalutFont = 12;
|
|
///文字上下的间隙
|
|
static CGFloat kRoomMessageTextSpaceHeight = 10;
|
|
|
|
static CGFloat kRoomMessageBubbleCornerRadius = 7;
|
|
///公屏保存的最大数
|
|
static NSInteger kRoomMessageMaxLength = 1000;
|
|
|
|
|
|
#endif /* XPRoomMessageConstant_h */
|