1234567891011121314151617181920212223242526272829 |
- //
- // PayAlert.h
- // smartRhino
- //
- // Created by niuzhen on 2020/4/30.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "BSAlertView.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PayAlert : BSAlertView
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet UIButton *AgreementBtn;
- @property (weak, nonatomic) IBOutlet UIView *AlertView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *Constant;
- @property (weak, nonatomic) IBOutlet UIButton *disBtn;
- @property (weak, nonatomic) IBOutlet UIView *titleView;
- + (instancetype)share;
- - (void)show;
- - (void)dismiss;
- @end
- NS_ASSUME_NONNULL_END
|