更换腾讯cos上传
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
#import "QXSongListModel.h"
|
||||
#import "QXRoomSeatDelegate.h"
|
||||
#import "QXRoomFriendRelationModel.h"
|
||||
#import "QXEmojiTypeModel.h"
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
typedef NS_ENUM(NSInteger) {
|
||||
@@ -20,6 +21,8 @@ typedef NS_ENUM(NSInteger) {
|
||||
QXRoomChatMessageTypeChat = 1,
|
||||
/// 礼物消息
|
||||
QXRoomChatMessageTypeGift = 2,
|
||||
/// 表情
|
||||
QXRoomChatMessageTypeEmoji = 3,
|
||||
}QXRoomChatMessageType;
|
||||
@class QXRoomChatListModel;
|
||||
@interface QXRoomChatListView : UIView
|
||||
@@ -31,6 +34,7 @@ typedef NS_ENUM(NSInteger) {
|
||||
@end
|
||||
|
||||
@interface QXRoomChatListCell : UITableViewCell
|
||||
@property(nonatomic,strong)UIView *bgView;
|
||||
@property(nonatomic,strong)UIImageView *headerImageView;
|
||||
@property(nonatomic,strong)UIView *iconBgView;
|
||||
@property(nonatomic,strong)NSMutableArray *iconViewArray;
|
||||
@@ -44,6 +48,7 @@ typedef NS_ENUM(NSInteger) {
|
||||
@end
|
||||
|
||||
@interface QXRoomGiftListCell : UITableViewCell
|
||||
@property(nonatomic,strong)UIView *bgView;
|
||||
@property(nonatomic,strong)UIImageView *headerImageView;
|
||||
@property(nonatomic,strong)UIView *iconBgView;
|
||||
/// 礼物图片
|
||||
@@ -60,9 +65,27 @@ typedef NS_ENUM(NSInteger) {
|
||||
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
||||
@end
|
||||
|
||||
@interface QXRoomEmojiListCell : UITableViewCell
|
||||
@property(nonatomic,strong)UIView *bgView;
|
||||
@property(nonatomic,strong)UIImageView *headerImageView;
|
||||
@property(nonatomic,strong)UIView *iconBgView;
|
||||
/// 礼物图片
|
||||
@property(nonatomic,strong)UIImageView *giftImageView;
|
||||
/// 礼物数量
|
||||
@property(nonatomic,strong)UILabel *giftCountLabel;
|
||||
@property(nonatomic,strong)NSMutableArray *iconViewArray;
|
||||
@property(nonatomic,strong)UILabel *nameLabel;
|
||||
@property(nonatomic,strong)SDAnimatedImageView *animatedImageView;
|
||||
@property(nonatomic,strong)UIImageView *bubbleImageView;
|
||||
@property (nonatomic,strong)QXRoomChatListModel *message;
|
||||
@property (nonatomic,weak)id<QXRoomSeatDelegate>delegate;
|
||||
-(void)loadBubble;
|
||||
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
||||
@end
|
||||
|
||||
|
||||
@interface QXRoomChatListSystemCell : UITableViewCell
|
||||
@property(nonatomic,strong)UIView *bgView;
|
||||
@property(nonatomic,strong)UIImageView *bubbleImageView;
|
||||
@property(nonatomic,strong)UILabel *titleLabel;
|
||||
@property (nonatomic,strong)QXRoomChatListModel *message;
|
||||
+(instancetype)cellWithTableView:(UITableView *)tableView;
|
||||
@@ -82,7 +105,6 @@ typedef NS_ENUM(NSInteger) {
|
||||
@property (nonatomic,strong)QXSongListModel* songInfo;
|
||||
/// 下一首音乐
|
||||
@property (nonatomic,strong)QXSongListModel* nextInfo;
|
||||
@property (nonatomic,assign)BOOL havBubble;
|
||||
|
||||
@property (nonatomic,strong)NSString* total;
|
||||
|
||||
@@ -93,6 +115,9 @@ typedef NS_ENUM(NSInteger) {
|
||||
|
||||
@property (nonatomic,strong)QXRoomFriendRelationModel* friend_user;
|
||||
|
||||
/// 发送表情
|
||||
@property (nonatomic,strong)QXEmojiModel* emoji;
|
||||
|
||||
/// 礼物数量 巡乐会
|
||||
@property (nonatomic,strong)NSString *gift_num;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user