48 lines
1.7 KiB
Objective-C
Executable File
48 lines
1.7 KiB
Objective-C
Executable File
//
|
|
// SPHomepageHeader.h
|
|
// SweetParty
|
|
//
|
|
// Created by bj_szd on 2022/6/2.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SPHomepageModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SPHomepageHeader : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *sexImgV;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *gxImgV;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *mlImgV;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *jueweiImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *signLab;
|
|
@property (weak, nonatomic) IBOutlet UIButton *TARoomBtn;
|
|
@property (weak, nonatomic) IBOutlet UIView *fansBgView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *focusLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *fansLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *collectLab;
|
|
@property (weak, nonatomic) IBOutlet UILabel *CPLab;
|
|
@property (weak, nonatomic) IBOutlet UIView *inRoomView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *inRoomBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *inRoomLab;
|
|
@property (weak, nonatomic) IBOutlet UIView *titleBgView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *roomCover;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *onlineStatus;
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *gonghuiCover;
|
|
@property (weak, nonatomic) IBOutlet UILabel *gonghuiNameLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *gonghuiNumLabel;
|
|
|
|
@property(nonatomic, copy)void(^onSelectIndexBlock)(NSInteger index);
|
|
|
|
@property (nonatomic, strong) SPHomepageModel *model;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|