BogoLanguageAlertView.h 652 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // BogoLanguageAlertView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/5/26.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BogoLanguageAlertView : UIView<UITableViewDelegate,UITableViewDataSource>
  11. @property(nonatomic, strong) UILabel *titleL;
  12. @property(nonatomic, strong) UITableView *tableView;
  13. @property(nonatomic, strong) UIButton *cancleBtn;
  14. @property(nonatomic, strong) UIButton *confirmBtn;
  15. @property (nonatomic, strong) UIView *shadowView;
  16. @property(nonatomic, strong) NSArray *listArr;
  17. - (void)show:(UIView *)superView;
  18. - (void)hide;
  19. @end
  20. NS_ASSUME_NONNULL_END