26 lines
590 B
Objective-C
Executable File
26 lines
590 B
Objective-C
Executable File
//
|
|
// YYPMPickGiftView.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 YYPMPickGiftView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
|
|
|
|
@property(nonatomic, copy) NSString *rid;
|
|
@property(nonatomic, copy) NSString *relation_id;//关系ID
|
|
@property(nonatomic, copy) NSString *day;//天数
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|