You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
505 B
29 lines
505 B
1 year ago
|
//
|
||
|
// KSMenu.h
|
||
|
// KSMenuDemo
|
||
|
//
|
||
|
// Created by mobao on 15/10/30.
|
||
|
// Copyright © 2015年 mobao. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "AppDelegate.h"
|
||
|
|
||
|
@protocol KSMenuDelegae <NSObject>
|
||
|
|
||
|
- (void)KSMenu:(NSInteger )indexPath;
|
||
|
|
||
|
|
||
|
@end
|
||
|
@interface KSMenu : UIView<UITableViewDataSource,UITableViewDelegate>
|
||
|
|
||
|
@property (strong,nonatomic)UITableView * tableView1;
|
||
|
|
||
|
@property (strong,nonatomic) NSArray * titArr;
|
||
|
|
||
|
@property (weak, nonatomic)id <KSMenuDelegae>delegate;
|
||
|
|
||
|
- (void)show;
|
||
|
|
||
|
@end
|