IVTMeLiveListCell.h
1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// IVTMeLiveListCell.h
// IVTMeLive
//
// Created by XRG on 16/4/15.
// Copyright © 2016年 Joky. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "IVTHotAndFollowVideoModel.h"
@class XMPPJID;
@class IVTMeLiveListCell;
@protocol IVTMeLiveListDelegate <NSObject>
-(void)userIconClick:(NSString *)userID;//点击热门里面的头像
-(void)attentionIconClick:(NSString *)followUserID;//点击关注里面的头像
@end
@class XMPPUserCoreDataStorageObject;
@interface IVTMeLiveListCell : UITableViewCell
@property (nonatomic, strong) XMPPUserCoreDataStorageObject *objc;
@property (nonatomic, weak) id<IVTMeLiveListDelegate>delegate;
@property (nonatomic, strong) UIImageView *headIcon;
@property (nonatomic, strong) UILabel *name;
@property (nonatomic, strong) UILabel *mark;
@property (nonatomic, strong) UIButton *follow;
@property (nonatomic, strong) UIImageView *imageVBig;
@property (nonatomic, strong) UIImageView *locationIcon;
@property (nonatomic, strong) UILabel *loaction;
@property (nonatomic, strong) UIImageView *audienceIcon;
@property (nonatomic, strong) UILabel *audienceNum;
@property (nonatomic, strong) UIImageView *likeIcon;
@property (nonatomic, strong) UILabel *likeNum;
@property (nonatomic, strong) UIImageView *live;
@property (nonatomic, assign) int followCount;
@property (nonatomic, assign) NSString *userid;
@property (nonatomic, strong) XMPPJID *userJid;
@property (nonatomic, strong) NSString *chatRoomAddr;
@property (nonatomic, strong) IVTHotAndFollowVideoModel * playerModel;
@end