YOUPAILCBoardDetailHeadView.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // YOUPAILCBoardDetailHeadView.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/9/26.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCBoardModel.h"
  10. @protocol LCBoardDetailHeadViewDeleagte <NSObject>
  11. - (void)youpaifsegmentClick:(NSInteger)index;
  12. @end
  13. @interface YOUPAILCBoardDetailHeadView : UIView
  14. @property(nonatomic,weak)id<LCBoardDetailHeadViewDeleagte> youpaipdelegate;
  15. //@property(nonatomic,strong)UISegmentedControl* segment;
  16. @property(nonatomic,strong)ZCNavMenuView* youpaipmenuView;
  17. @property(nonatomic,strong)UILabel* youpaiptitleLabel;
  18. - (instancetype)initWithFrame:(CGRect)frame headArray:(NSMutableArray*)headArray selectIndex:(NSInteger)index andType:(NSInteger)type;
  19. - (void)youpaifupdateHeadArray:(NSMutableArray*)headArray selectIndex:(NSInteger)index;
  20. @end
  21. @interface headView : UIView
  22. @property(nonatomic,strong)UIImageView* youpaipavatarView;
  23. @property(nonatomic,strong)UIImageView* youpaipcrownImgView;//皇冠
  24. @property(nonatomic,strong)UILabel* youpaipnameLab;
  25. @property(nonatomic,strong)UILabel* youpaipexpLab;
  26. @property(nonatomic,assign)NSInteger youpaipserial;
  27. @property(nonatomic,strong)NSString* youpaipuserId;
  28. @property(nonatomic,assign)NSInteger youpaiptype;
  29. @property(nonatomic,strong)UIImageView *youpaipvipV;
  30. - (instancetype)initWithFrame:(CGRect)frame serial:(NSInteger)serial type:(NSInteger)type;
  31. @end