SearchViewController.h 817 B

1234567891011121314151617181920212223
  1. //
  2. // SearchViewController.h
  3. // Apex Mobile
  4. //
  5. // Created by Ray on 14-3-3.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CustomizeFieldViewController.h"
  10. #import "MyAutocompleteView.h"
  11. @interface SearchViewController : UIViewController <UITableViewDataSource,UITableViewDelegate,UIActionSheetDelegate,UIAlertViewDelegate>
  12. @property (strong,nonatomic) NSString* function_name;
  13. @property bool dirty;
  14. //@property (strong,nonatomic) UIDatePicker* datePicker;
  15. @property (strong,nonatomic) UITextField* textFieldtmp;
  16. @property (strong,nonatomic) UIButton* boolBtntmp;
  17. @property (strong, nonatomic) IBOutlet UITableView *table;
  18. @property int ioffset;
  19. //- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;
  20. @end