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.
28 lines
578 B
28 lines
578 B
![]()
2 years ago
|
//
|
||
|
// transferPopView.h
|
||
|
// Lookfit
|
||
|
//
|
||
|
// 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 transferPopView : UIView
|
||
|
|
||
|
- (void)subPopView;
|
||
|
- (void)dismiss;
|
||
|
|
||
|
@property (nonatomic ,strong) UILabel *numberLabel;
|
||
|
@property (nonatomic ,strong) UILabel *msgLabel;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|