| 1234567891011121314151617 |
- //
- // EditPayView.h
- // YBVideo
- //
- // Created by ybRRR on 2023/7/12.
- // Copyright © 2023 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^editEvent)(NSString *type,NSString *coinStr);
- @interface EditPayView : UIView
- @property(nonatomic, copy)editEvent closeEvent;
- @end
|