28 lines
638 B
C
28 lines
638 B
C
|
|
//
|
||
|
|
// YYJYPendantGiftView.h
|
||
|
|
// YaYin
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/7/28.
|
||
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface YYJYPendantGiftView : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV_1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab_1;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV_2;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab_2;
|
||
|
|
|
||
|
|
@property(nonatomic, strong) NSDictionary *dataDict;
|
||
|
|
|
||
|
|
- (void)onPlayGiftVap;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|