| 12345678910111213141516171819202122232425262728 |
- //
- // PDFListViewController.h
- // RedAnt ERP Mobile
- //
- // Created by Ray on 11/23/15.
- // Copyright © 2015 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ActiveViewController.h"
- @interface PortfolioListViewController : ActiveViewController <UIAlertViewDelegate>
- @property (strong, nonatomic) IBOutlet UITableView *table;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- @property (strong,nonatomic) NSMutableArray * content_data;
- @property int offset;
- @property int limit;
- @property (strong,nonatomic) NSString* load_more_hint;
- @property (strong, nonatomic) IBOutlet UISearchBar *searchbar;
- @property (strong,nonatomic) NSString* keywords;
- @property bool reset;
- @property bool norefresh;
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @property (nonatomic,strong) IBOutlet UINavigationItem *navItem;
- @end
|