| 1234567891011121314151617181920212223 |
- //
- // SearchViewController.h
- // Apex Mobile
- //
- // Created by Ray on 14-3-3.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CustomizeFieldViewController.h"
- #import "MyAutocompleteView.h"
- @interface SearchViewController : UIViewController <UITableViewDataSource,UITableViewDelegate,UIActionSheetDelegate,UIAlertViewDelegate>
- @property (strong,nonatomic) NSString* function_name;
- @property bool dirty;
- //@property (strong,nonatomic) UIDatePicker* datePicker;
- @property (strong,nonatomic) UITextField* textFieldtmp;
- @property (strong,nonatomic) UIButton* boolBtntmp;
- @property (strong, nonatomic) IBOutlet UITableView *table;
- @property int ioffset;
- //- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;
- @end
|