25 lines
539 B
C
25 lines
539 B
C
|
|
//
|
||
|
|
// SPMostGiftsView.h
|
||
|
|
// YaYin
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/7/12.
|
||
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface SPMostGiftsView : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV_1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab_1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *numLab;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSDictionary *dataDict;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|