DocumentListViewController.h 745 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // DocumentListViewController.h
  3. // Granite Expo eSign
  4. //
  5. // Created by Ray on 12/28/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface DocumentListViewController : UIViewController
  10. @property (strong,nonatomic) NSMutableArray* table_data;
  11. @property (strong, nonatomic) IBOutlet UITableView *tableView;
  12. @property long offset;
  13. @property int limit;
  14. @property (strong,nonatomic) NSString* load_more_hint;
  15. //@property
  16. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  17. @property bool reset_result;
  18. @property (strong,nonatomic) NSMutableDictionary* filterparams;
  19. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  20. @end