123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // YOUPAILCBoardDetailHeadView.h
- // LiveChat
- //
- // Created by 张灿 on 2018/9/26.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCBoardModel.h"
- @protocol LCBoardDetailHeadViewDeleagte <NSObject>
- - (void)youpaifsegmentClick:(NSInteger)index;
- @end
- @interface YOUPAILCBoardDetailHeadView : UIView
- @property(nonatomic,weak)id<LCBoardDetailHeadViewDeleagte> youpaipdelegate;
- //@property(nonatomic,strong)UISegmentedControl* segment;
- @property(nonatomic,strong)ZCNavMenuView* youpaipmenuView;
- @property(nonatomic,strong)UILabel* youpaiptitleLabel;
- - (instancetype)initWithFrame:(CGRect)frame headArray:(NSMutableArray*)headArray selectIndex:(NSInteger)index andType:(NSInteger)type;
- - (void)youpaifupdateHeadArray:(NSMutableArray*)headArray selectIndex:(NSInteger)index;
- @end
- @interface headView : UIView
- @property(nonatomic,strong)UIImageView* youpaipavatarView;
- @property(nonatomic,strong)UIImageView* youpaipcrownImgView;//皇冠
- @property(nonatomic,strong)UILabel* youpaipnameLab;
- @property(nonatomic,strong)UILabel* youpaipexpLab;
- @property(nonatomic,assign)NSInteger youpaipserial;
- @property(nonatomic,strong)NSString* youpaipuserId;
- @property(nonatomic,assign)NSInteger youpaiptype;
- @property(nonatomic,strong)UIImageView *youpaipvipV;
- - (instancetype)initWithFrame:(CGRect)frame serial:(NSInteger)serial type:(NSInteger)type;
- @end
|