// // LXCustomActionSheet.h // CustomUISwitch // // Created by lianxiang on 2018/10/11. // Copyright © 2018年 lian. All rights reserved. // #import @interface LXCustomActionSheet : UIView - (instancetype)initWithTitle:(NSString*)title optionsArr:(NSArray*)optionsArr cancelTitle:(NSString*)cancelTitle selectedBlock:(void(^)(NSInteger))selectedBlock cancelBlock:(void(^)(void))cancelBlock; -(void)show; @end