// // LXPopView.h // ifishPop // // Created by imac on 16/7/29. // Copyright © 2016年 xiang. All rights reserved. // #import @protocol LxPopViewDelegate @required -(void)disSelectedPopViewIndex:(NSIndexPath *)Index; @end @interface LXPopView : UIView { UITableView *tableview; } @property(nonatomic,strong) id delegate; @property(nonatomic,strong) UITableView *tableView; @property(nonatomic,strong) NSArray *titles; @property(nonatomic,strong) NSArray *titleImgs; @property(nonatomic,strong) UIImage *backgroundImage; @end