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