WatchListViewController.h 1005 B

123456789101112131415161718192021222324252627
  1. //
  2. // WatchListViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 14-8-1.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ActiveViewController.h"
  10. @interface WatchListViewController : 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) NSIndexPath *indexPath;
  20. //@property bool selectall;
  21. @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
  22. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  23. @end