ContactListViewController.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // ContactListViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 8/29/15.
  6. // Copyright (c) 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CustomerInfoViewController.h"
  10. #import "RTLabel.h"
  11. #import "ActiveViewController.h"
  12. @interface ContactListViewController : ActiveViewController<UITableViewDataSource,UITableViewDelegate,UISearchBarDelegate>
  13. @property (strong, nonatomic) IBOutlet UITableView *table;
  14. @property (strong, nonatomic) IBOutlet UISearchBar *searchBar;
  15. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  16. @property (strong,nonatomic) NSMutableArray * content_data;
  17. @property int offset;
  18. @property int limit;
  19. @property (strong,nonatomic) NSString* load_more_hint;
  20. @property bool reset;
  21. @property bool update_order;
  22. @property (strong,nonatomic) NSString* contact_type;
  23. @property (strong,nonatomic) NSString* keywords;
  24. @property (nonatomic , copy) void (^returnValue)(NSMutableDictionary* value,NSIndexPath* source);
  25. @property (nonatomic , copy) void (^onCancel)(void);
  26. @property (nonatomic , copy) void (^onReset)(void);
  27. @property (strong,nonatomic) NSIndexPath* from;
  28. @property (strong,nonatomic) NSString* is_subaction;
  29. @property (strong,nonatomic) NSString* subaction_tag;
  30. @property bool showNavibar;
  31. @property (strong,nonatomic) NSMutableDictionary* adv_search;
  32. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  33. @property bool edit_icon;
  34. @property bool assig_icon;
  35. @property bool reset_icon;
  36. @property int ui_type;
  37. @property (weak, nonatomic) IBOutlet UIToolbar *toolbar;
  38. @end