| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // HomeViewController.h
- // RedAnt ERP Suite
- //
- // Created by Ray on 14-5-23.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CycleScrollView.h"
- #import "SliderPage.h"
- //#import "TopicViewController.h"
- #import "RATreeView.h"
- #import "ActiveViewController.h"
- #import "HomeTableViewCellTopic.h"
- @interface HomeViewController : ActiveViewController<RATreeViewDelegate, RATreeViewDataSource,UITableViewDataSource,UITableViewDelegate,HomeTableViewCellTopicDelegate>
- //@property (strong, nonatomic) CycleScrollView *imgScroll;
- //@property (strong,nonatomic) TopicViewController* topicview;
- //@property (strong,nonatomic) TopicViewController* topicview1;
- //@property (strong, nonatomic) IBOutlet UIScrollView *scroll;
- //@property CGSize contentsize;
- @property (strong, nonatomic) IBOutlet UIView *treeContainer;
- @property (weak, nonatomic) RATreeView *treeView;
- @property (strong, nonatomic) IBOutlet UITableView *homeTable;
- //@property (strong,nonatomic) NSMutableArray * sideMenuItems;
- @property (strong,nonatomic) NSDictionary* content;
- @property (strong,nonatomic) NSDictionary* bak_content;
- @property (strong, nonatomic) id expanded;
- @property (assign, nonatomic) CGSize ori_size;
- //@property (strong,nonatomic) NSDictionary*
- //@property (strong,nonatomic) NSMutableArray * arr_topicView;
- //-(void)topicViewSelected:(int) type _id: (int) _id;
- @property (strong, nonatomic) IBOutlet UIActivityIndicatorView *mum;
- //@property(nonatomic,readonly,retain) UINavigationController *navigationController; // If this view controller has been pushed onto a navigation controller, return it.
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @end
|