| 123456789101112131415161718192021 |
- //
- // WentingLicenseViewController.h
- // LBUIDemo
- //
- // Created by 吴博 on 2021/7/26.
- // Copyright © 2021 xunjiangtao. All rights reserved.
- //
- #pragma once
- #import <UIKit/UIKit.h>
- typedef void(^ButtonAction)(void);
- @interface WentingLicenseViewController : UIViewController
- @property (nonatomic, copy) ButtonAction cancelAction;
- @property (nonatomic, copy) ButtonAction confirmAction;
- - (void)remove;
- @end
|