PortfolioListViewController.h 894 B

12345678910111213141516171819202122232425262728
  1. //
  2. // PDFListViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 11/23/15.
  6. // Copyright © 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ActiveViewController.h"
  10. @interface PortfolioListViewController : ActiveViewController <UIAlertViewDelegate>
  11. @property (strong, nonatomic) IBOutlet UITableView *table;
  12. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  13. @property (strong,nonatomic) NSMutableArray * content_data;
  14. @property int offset;
  15. @property int limit;
  16. @property (strong,nonatomic) NSString* load_more_hint;
  17. @property (strong, nonatomic) IBOutlet UISearchBar *searchbar;
  18. @property (strong,nonatomic) NSString* keywords;
  19. @property bool reset;
  20. @property bool norefresh;
  21. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  22. @property (nonatomic,strong) IBOutlet UINavigationItem *navItem;
  23. @end