You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
582 B

//
// transferPopViews.h
// FireBoltt
//
// Created by ecell on 2023/3/15.
// Copyright © 2023 Sheldon. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "UIViewExt.h"
#define SCREEN_WIDTH [UIScreen mainScreen].bounds.size.width
#define SCREEN_HEIGHT [UIScreen mainScreen].bounds.size.height
NS_ASSUME_NONNULL_BEGIN
@interface transferPopViews : UIView
- (void)subPopView;
- (void)dismiss;
@property (nonatomic ,strong) UILabel *numberLabel;
@property (nonatomic ,strong) UILabel *msgLabel;
@end
NS_ASSUME_NONNULL_END