| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // ContactListViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 8/29/15.
- // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CustomerInfoViewController.h"
- #import "RTLabel.h"
- #import "ActiveViewController.h"
- @interface ContactListViewController : ActiveViewController<UITableViewDataSource,UITableViewDelegate,UISearchBarDelegate>
- @property (strong, nonatomic) IBOutlet UITableView *table;
- @property (strong, nonatomic) IBOutlet UISearchBar *searchBar;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong,nonatomic) NSMutableArray * content_data;
- @property int offset;
- @property int limit;
- @property (strong,nonatomic) NSString* load_more_hint;
- @property bool reset;
- @property bool update_order;
- @property (strong,nonatomic) NSString* contact_type;
- @property (strong,nonatomic) NSString* keywords;
- @property (nonatomic , copy) void (^returnValue)(NSMutableDictionary* value,NSIndexPath* source);
- @property (nonatomic , copy) void (^onCancel)(void);
- @property (nonatomic , copy) void (^onReset)(void);
- @property (strong,nonatomic) NSIndexPath* from;
- @property (strong,nonatomic) NSString* is_subaction;
- @property (strong,nonatomic) NSString* subaction_tag;
- @property bool showNavibar;
- @property (strong,nonatomic) NSMutableDictionary* adv_search;
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @property bool edit_icon;
- @property bool assig_icon;
- @property bool reset_icon;
- @property int ui_type;
- @property (weak, nonatomic) IBOutlet UIToolbar *toolbar;
- @end
|