36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
|
|
//
|
||
|
|
// SPHomepageInfoView.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2022/6/2.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "SPHomepageModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface SPHomepageInfoView : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *sexLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *ageLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *xingzuoLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *IDLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *locationLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *signLab;
|
||
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIView *giftBgView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV_1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV_2;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV_3;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *gxImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *mlImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *jueweiImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bottomBgImgV;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) SPHomepageModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|