WentingLicenseViewController.h 418 B

123456789101112131415161718192021
  1. //
  2. // WentingLicenseViewController.h
  3. // LBUIDemo
  4. //
  5. // Created by 吴博 on 2021/7/26.
  6. // Copyright © 2021 xunjiangtao. All rights reserved.
  7. //
  8. #pragma once
  9. #import <UIKit/UIKit.h>
  10. typedef void(^ButtonAction)(void);
  11. @interface WentingLicenseViewController : UIViewController
  12. @property (nonatomic, copy) ButtonAction cancelAction;
  13. @property (nonatomic, copy) ButtonAction confirmAction;
  14. - (void)remove;
  15. @end