// // LXActionView.h // ISCTest // // Created by imac on 16/5/18. // Copyright © 2016年 xiang. All rights reserved. // #import @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