| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //
- // SLeaderHeadView.h
- // BuguLive
- //
- // Created by 丁凯 on 2017/9/5.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import "BGBaseView.h"
- @interface SLeaderHeadView : BGBaseView
- @property ( nonatomic,strong)UIImageView *bottomImgView;
- //左边
- @property ( nonatomic,strong)UILabel *LTicketLabel; //影票
- @property ( nonatomic,strong)UIView *LNSRView; //印票
- @property ( nonatomic,strong)UIView *baseView; //底部view
- @property ( nonatomic,strong)UIView *ticketBaseView; //印票、等级view
- @property ( nonatomic,strong)UILabel *LNameLabel; //名字
- @property ( nonatomic,strong)UIImageView *LSexImgView; //性别
- @property ( nonatomic,strong)UIImageView *LRankImgView; //等级
- @property ( nonatomic,strong)UIImageView *LHeadImgView; //头像
- @property ( nonatomic,strong)UIImageView *LGoldImgView; //头像等级图
- @property(nonatomic, strong) UIButton *LConcertBtn; //关注按钮
- @property(nonatomic, strong) UserModel *LModel;
- //中间
- @property ( nonatomic,strong)UILabel *MTicketLabel; //影票
- @property ( nonatomic,strong)UIView *MNSRView; //印票
- @property ( nonatomic,strong)UIView *mbaseView; //底部view
- @property ( nonatomic,strong)UIView *mticketBaseView; //印票、等级view
- @property ( nonatomic,strong)UILabel *MNameLabel; //名字
- @property ( nonatomic,strong)UIImageView *MSexImgView; //性别
- @property ( nonatomic,strong)UIImageView *MRankImgView; //等级
- @property ( nonatomic,strong)UIImageView *MHeadImgView; //头像
- @property ( nonatomic,strong)UIImageView *MGoldImgView; //头像等级图
- @property(nonatomic, strong) UIButton *MConcertBtn; //关注按钮
- @property(nonatomic, strong) UserModel *MModel;
- //右边
- @property ( nonatomic,strong)UILabel *RTicketLabel; //影票
- @property ( nonatomic,strong)UIView *RNSRView; //印票
- @property ( nonatomic,strong)UIView *rbaseView; //底部view
- @property ( nonatomic,strong)UIView *rticketBaseView; //印票、等级view
- @property ( nonatomic,strong)UILabel *RNameLabel; //名字
- @property ( nonatomic,strong)UIImageView *RSexImgView; //性别
- @property ( nonatomic,strong)UIImageView *RRankImgView; //等级
- @property ( nonatomic,strong)UIImageView *RHeadImgView; //头像
- @property ( nonatomic,strong)UIImageView *RGoldImgView; //头像等级图
- @property(nonatomic, strong) UIButton *RConcertBtn; //关注按钮
- @property(nonatomic, strong) UserModel *RModel;
- @property ( nonatomic,copy)void (^leadBlock) (int imgaeIdnex);
- /**
- 排行榜和贡献榜表头
- @param mArr 数据源
- @param type 1表示贡献榜页面 0表示总榜页面,区分ticket 和use_ticket
- @param consumeType 用于区分是收入榜还是消费榜
- */
- - (void)setMyViewWithMArr:(NSMutableArray *)mArr andType:(int)type consumeType:(int)consumeType;
- @end
|