ResultViewController.h 924 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ViewController.h
  3. // phoneTest
  4. //
  5. // Created by Ray on 01/09/2017.
  6. //
  7. //
  8. #import <UIKit/UIKit.h>
  9. //#import "TouchLabel.h"
  10. #import "MDHTMLLabel.h"
  11. @interface ResultViewController : UIViewController<UIPopoverPresentationControllerDelegate>
  12. @property (weak, nonatomic) IBOutlet UITableView *tableview;
  13. @property (weak, nonatomic) IBOutlet UIScrollView *scrollview;
  14. @property (strong, nonatomic) NSMutableDictionary* content_layout;
  15. @property (strong, nonatomic) NSMutableArray* content_action;
  16. @property (strong, nonatomic) NSMutableDictionary* content_data;
  17. @property (strong, nonatomic) NSMutableArray* content_menu;
  18. @property (strong, nonatomic) MDHTMLLabel *label;
  19. @property (strong, nonatomic) NSString *download_query;
  20. - (void)setQueryParams:(NSDictionary *)params;
  21. //@property (strong, nonatomic)UITapGestureRecognizer* labelTap;
  22. //
  23. //@property (strong, nonatomic)UITapGestureRecognizer* cellDoubleTap;
  24. @end