| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // DocumentListViewController.h
- // Granite Expo eSign
- //
- // Created by Ray on 12/28/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface DocumentListViewController : UIViewController
- @property (strong,nonatomic) NSMutableArray* table_data;
- @property (strong, nonatomic) IBOutlet UITableView *tableView;
- @property long offset;
- @property int limit;
- @property (strong,nonatomic) NSString* load_more_hint;
- //@property
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @property bool reset_result;
- @property (strong,nonatomic) NSMutableDictionary* filterparams;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @end
|