| 123456789101112131415161718192021222324252627 |
- //
- // WatchListViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 14-8-1.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ActiveViewController.h"
- @interface WatchListViewController : ActiveViewController<UITableViewDataSource,UITableViewDelegate>
- @property (strong,nonatomic) NSMutableDictionary* content_data;
- @property (strong, nonatomic) IBOutlet UITableView *itemListTable;
- @property (strong, nonatomic) IBOutlet UIToolbar *toolbar;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnselect;
- @property (strong, nonatomic) NSString* pdf_url;
- @property (strong, nonatomic) NSString* path;
- @property bool remove_item;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *btnAddtoCart;
- @property (strong, nonatomic) NSIndexPath *indexPath;
- //@property bool selectall;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @end
|