PortfolioViewController.h 1.1 KB

12345678910111213141516171819202122232425262728
  1. //
  2. // PortfolioViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 12/7/15.
  6. // Copyright © 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ActiveViewController.h"
  10. @interface PortfolioViewController : ActiveViewController<UITableViewDataSource,UITableViewDelegate>
  11. @property (strong,nonatomic) NSMutableDictionary* content_data;
  12. @property (strong, nonatomic) IBOutlet UITableView *itemListTable;
  13. @property (strong, nonatomic) IBOutlet UIToolbar *toolbar;
  14. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnselect;
  15. @property (strong, nonatomic) NSString* pdf_url;
  16. @property (strong, nonatomic) NSString* path;
  17. @property bool remove_item;
  18. //@property (strong, nonatomic) IBOutlet UIBarButtonItem *btnAddtoCart;
  19. @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnCreatePort;
  20. @property (strong, nonatomic) NSIndexPath *indexPath;
  21. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  22. //@property (strong, nonatomic) IBOutlet UIToolbar *toolbar;
  23. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  24. @property (nonatomic,strong) IBOutlet UIBarButtonItem *btnEdit;
  25. @end