Initial commit
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user