DetailPageViewController.h 1.0 KB

123456789101112131415161718192021222324252627282930
  1. //
  2. // DetailPageViewController.h
  3. // Apex Mobile
  4. //
  5. // Created by Ray on 14-3-8.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RANetwork.h"
  10. #import "DetailCellKV.h"
  11. #import "DetailCellList.h"
  12. #import "DetailCellWeb.h"
  13. @interface DetailPageViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,WKNavigationDelegate>
  14. @property (strong,nonatomic) NSString* function_name;
  15. @property (strong,nonatomic) NSMutableDictionary* params;
  16. @property (strong,nonatomic) DetailContent* content;
  17. @property (strong, nonatomic) IBOutlet UITableView *table;
  18. //@property (strong,nonatomic) DetailCellKV *compute_cell_kv;
  19. //@property (strong, nonatomic) IBOutlet UILabel *norecordLabel;
  20. @property (strong, nonatomic) IBOutlet UILabel *norecordLabel;
  21. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  22. //@property bool showtabbar;
  23. //@property (strong, nonatomic) NSOperationQueue *webviewoprationQueue;
  24. @property (nonatomic,assign) BOOL showMap;
  25. @end