| 123456789101112131415161718192021222324252627282930 |
- //
- // DetailPageViewController.h
- // Apex Mobile
- //
- // Created by Ray on 14-3-8.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "RANetwork.h"
- #import "DetailCellKV.h"
- #import "DetailCellList.h"
- #import "DetailCellWeb.h"
- @interface DetailPageViewController : UIViewController<UITableViewDataSource,UITableViewDelegate,WKNavigationDelegate>
- @property (strong,nonatomic) NSString* function_name;
- @property (strong,nonatomic) NSMutableDictionary* params;
- @property (strong,nonatomic) DetailContent* content;
- @property (strong, nonatomic) IBOutlet UITableView *table;
- //@property (strong,nonatomic) DetailCellKV *compute_cell_kv;
- //@property (strong, nonatomic) IBOutlet UILabel *norecordLabel;
- @property (strong, nonatomic) IBOutlet UILabel *norecordLabel;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- //@property bool showtabbar;
- //@property (strong, nonatomic) NSOperationQueue *webviewoprationQueue;
- @property (nonatomic,assign) BOOL showMap;
- @end
|