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