| 123456789101112131415161718192021222324 |
- //
- // YBAlertActionSheet.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/5/29.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^btnClickEvent)(NSString *btnTitle);
- NS_ASSUME_NONNULL_BEGIN
- @interface YBAlertActionSheet : UIView
- {
- UIButton *cancelBtn;
- UIView *titleBack;
- }
- @property (nonatomic, copy)btnClickEvent btnEvent;
- -(instancetype)initWithFrame:(CGRect)frame cancelTitle:(NSString *)cancelText cancelColor:(UIColor *)cancelcolors andRowHeight:(int)rowH andOtherTitle:(NSArray *)otherArr;
- @end
- NS_ASSUME_NONNULL_END
|