PayAlert.h 677 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // PayAlert.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/4/30.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "BSAlertView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface PayAlert : BSAlertView
  12. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  13. @property (weak, nonatomic) IBOutlet UIButton *AgreementBtn;
  14. @property (weak, nonatomic) IBOutlet UIView *AlertView;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *Constant;
  16. @property (weak, nonatomic) IBOutlet UIButton *disBtn;
  17. @property (weak, nonatomic) IBOutlet UIView *titleView;
  18. + (instancetype)share;
  19. - (void)show;
  20. - (void)dismiss;
  21. @end
  22. NS_ASSUME_NONNULL_END