Guest User

Untitled

a guest
Dec 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. //
  2. // LNCustomTableViewController.h
  3. // LNMobileProject
  4. //
  5. // Created by Liu Cheng on 2018/5/25.
  6. //
  7.  
  8. #import <UIKit/UIKit.h>
  9.  
  10. @interface LNCustomTableViewController : LNBaseVC
  11.  
  12. @property (strong, nonatomic) UITableView *tableView;
  13. @property (strong, nonatomic) NSMutableArray *dataArray;
  14. @property (assign, nonatomic) NSInteger page;
  15.  
  16. - (void)loadData;
  17. - (void)loadDataWithUrl:(NSString *)url params:(NSDictionary *)params success:(void(^)(id json))success;
  18. - (void)reloadData;
  19.  
  20. @end
Add Comment
Please, Sign In to add comment