CustomizeFieldViewController.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // CustomizeFieldViewController.h
  3. // Apex Mobile
  4. //
  5. // Created by Ray on 14-3-12.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <sqlite3.h>
  10. #import "AppDelegate.h"
  11. //#import "ApexMobileDB.h"
  12. #import "RASingleton.h"
  13. #import "SearchViewController.h"
  14. //#import "RANetwork.h"
  15. @interface CustomizeFieldViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>
  16. @property (strong,nonatomic) NSString* function_name;
  17. //@property (strong,nonatomic) NSString* dirty;
  18. @property (strong, nonatomic) IBOutlet UITableView *tableView;
  19. @property int behavior;
  20. @property (strong,nonatomic) NSString * type;
  21. @property (strong,nonatomic) NSString * subtype;
  22. @property (strong,nonatomic) NSMutableArray * displayfields;
  23. @property (strong,nonatomic) NSMutableArray * hidefields;
  24. @property NSUInteger taptime;
  25. @property NSIndexPath* lasttap;
  26. // 2019.1.21修改,在Result中显示最多三个
  27. @property (nonatomic,assign) BOOL forNewResult;
  28. @property (nonatomic,assign) NSUInteger maxDisplayCount;
  29. @end