From 21d3023a9b7b6aff68c1170e345951396b1c6cfd Mon Sep 17 00:00:00 2001 From: 单军华 Date: Tue, 31 Jul 2018 13:35:21 +0800 Subject: [PATCH] no message --- screendisplay/Pods/EaseUI/EaseUI/EMUIKit/Views/conversation/MessageCell/EaseBaseMessageCell.h | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 57 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/EaseUI/EaseUI/EMUIKit/Views/conversation/MessageCell/EaseBaseMessageCell.h b/screendisplay/Pods/EaseUI/EaseUI/EMUIKit/Views/conversation/MessageCell/EaseBaseMessageCell.h new file mode 100755 index 0000000..e051569 --- /dev/null +++ b/screendisplay/Pods/EaseUI/EaseUI/EMUIKit/Views/conversation/MessageCell/EaseBaseMessageCell.h @@ -0,0 +1,57 @@ +/************************************************************ + * * Hyphenate CONFIDENTIAL + * __________________ + * Copyright (C) 2016 Hyphenate Inc. All rights reserved. + * + * NOTICE: All information contained herein is, and remains + * the property of Hyphenate Inc. + * Dissemination of this information or reproduction of this material + * is strictly forbidden unless prior written permission is obtained + * from Hyphenate Inc. + */ + +#import "EaseMessageCell.h" + +extern NSString *const EaseMessageCellIdentifierSendText; +extern NSString *const EaseMessageCellIdentifierSendLocation; +extern NSString *const EaseMessageCellIdentifierSendVoice; +extern NSString *const EaseMessageCellIdentifierSendVideo; +extern NSString *const EaseMessageCellIdentifierSendImage; +extern NSString *const EaseMessageCellIdentifierSendFile; + +@interface EaseBaseMessageCell : EaseMessageCell +{ + UILabel *_nameLabel; +} + +/* + * ������������������ + */ +@property (nonatomic) CGFloat avatarSize UI_APPEARANCE_SELECTOR; //default 30; + +/* + * ������������ + */ +@property (nonatomic) CGFloat avatarCornerRadius UI_APPEARANCE_SELECTOR; //default 0; + +/* + * ������������������ + */ +@property (nonatomic) UIFont *messageNameFont UI_APPEARANCE_SELECTOR; //default [UIFont systemFontOfSize:10]; + +/* + * ������������������ + */ +@property (nonatomic) UIColor *messageNameColor UI_APPEARANCE_SELECTOR; //default [UIColor grayColor]; + +/* + * ������������������ + */ +@property (nonatomic) CGFloat messageNameHeight UI_APPEARANCE_SELECTOR; //default 15; + +/* + * ������������������ + */ +@property (nonatomic) BOOL messageNameIsHidden UI_APPEARANCE_SELECTOR; //default NO; + +@end -- Gitblit v1.8.0