| 123456789101112131415161718192021222324 |
- //
- // MenuTableViewController.h
- // CommonLibrary
- //
- // Created by AlexiChen on 15/11/12.
- // Copyright © 2015年 AlexiChen. All rights reserved.
- //
- #import "BaseViewController.h"
- #import "MenuAbleItem.h"
- @interface MenuTableViewController : BaseViewController<UITableViewDelegate, UITableViewDataSource>
- {
- @protected
- NSMutableArray *_data;
- UITableView *_tableView;
- }
- @property (nonatomic, readonly) UITableView *tableView;
- @property (nonatomic, strong) NSMutableArray *data;
- - (void)configCell:(UITableViewCell *)cell with:(id<MenuAbleItem>)meun;
- @end
|