IVTMeLiveListCell.h 1.51 KB
//
//  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