24 lines
466 B
Objective-C
24 lines
466 B
Objective-C
//
|
|
// DengBoxAlert.h
|
|
// romantic
|
|
//
|
|
// Created by bj_szd on 2023/7/19.
|
|
// Copyright © 2023 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DengBoxAlert : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
|
@property (weak, nonatomic) IBOutlet UITableView *tableView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *moneyLab;
|
|
|
|
@property (nonatomic, copy) NSString *rid;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|