| 123456789101112131415161718192021222324252627282930 |
- //
- // RAViewController.h
- // RATreeView
- //
- // Created by Rafal Augustyniak on 01.09.2013.
- // Copyright (c) 2013 Rafal Augustyniak. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ActiveViewController.h"
- @class RAViewController;
- @protocol CategoryMenuDelegate <NSObject>
- -(void) SelectCategory:(NSString *)category;
- @end
- @interface RAViewController : ActiveViewController
- @property (nonatomic, weak) id<CategoryMenuDelegate> CateMenu_delegate;
- -(void) SetMenu:(NSDictionary*) menu;
- //@property (strong, nonatomic) IBOutlet UINavigationItem *header;
- @property (strong, nonatomic) IBOutlet UINavigationBar *headerview;
- @property (strong, nonatomic) IBOutlet UIView *treeContainer;
- //@property (strong,nonatomic) id rootViewController;
- //@property (strong, nonatomic) IBOutlet UINavigationItem *navi_item;
- //@property (strong,nonatomic) UITapGestureRecognizer *tapGesture ;
- @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
- @end
|