35 lines
622 B
Objective-C
35 lines
622 B
Objective-C
//
|
|
// LXActionView.h
|
|
// ISCTest
|
|
//
|
|
// Created by imac on 16/5/18.
|
|
// Copyright © 2016年 xiang. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@protocol LXActionSheetDelegate
|
|
|
|
|
|
@end
|
|
|
|
@interface LXActionView : UITableView
|
|
|
|
@property(nonatomic,assign) NSInteger selectedIndex;
|
|
|
|
@property(nonatomic,copy) void(^didSelectedAtIndexPath)(NSString *title,NSIndexPath *indexPath);
|
|
|
|
@property (nonatomic, strong) NSString *selectedTitle;
|
|
|
|
- (void)setImageNameList:(NSArray *)imageNameList titles:(NSArray *)titles;
|
|
- (void)setOnlytitles:(NSArray *)titles;
|
|
|
|
|
|
- (void)showActionSheet;
|
|
|
|
- (void)actionSheetViewHidden;
|
|
|
|
|
|
|
|
@end
|