YBAlertActionSheet.h 576 B

123456789101112131415161718192021222324
  1. //
  2. // YBAlertActionSheet.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/5/29.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^btnClickEvent)(NSString *btnTitle);
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface YBAlertActionSheet : UIView
  12. {
  13. UIButton *cancelBtn;
  14. UIView *titleBack;
  15. }
  16. @property (nonatomic, copy)btnClickEvent btnEvent;
  17. -(instancetype)initWithFrame:(CGRect)frame cancelTitle:(NSString *)cancelText cancelColor:(UIColor *)cancelcolors andRowHeight:(int)rowH andOtherTitle:(NSArray *)otherArr;
  18. @end
  19. NS_ASSUME_NONNULL_END