| 12345678910111213141516171819202122232425262728 |
- //
- // ViewController.h
- // phoneTest
- //
- // Created by Ray on 01/09/2017.
- //
- //
- #import <UIKit/UIKit.h>
- //#import "TouchLabel.h"
- #import "MDHTMLLabel.h"
- @interface ResultViewController : UIViewController<UIPopoverPresentationControllerDelegate>
- @property (weak, nonatomic) IBOutlet UITableView *tableview;
- @property (weak, nonatomic) IBOutlet UIScrollView *scrollview;
- @property (strong, nonatomic) NSMutableDictionary* content_layout;
- @property (strong, nonatomic) NSMutableArray* content_action;
- @property (strong, nonatomic) NSMutableDictionary* content_data;
- @property (strong, nonatomic) NSMutableArray* content_menu;
- @property (strong, nonatomic) MDHTMLLabel *label;
- @property (strong, nonatomic) NSString *download_query;
- - (void)setQueryParams:(NSDictionary *)params;
- //@property (strong, nonatomic)UITapGestureRecognizer* labelTap;
- //
- //@property (strong, nonatomic)UITapGestureRecognizer* cellDoubleTap;
- @end
|