RAViewController.h 957 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // RAViewController.h
  3. // RATreeView
  4. //
  5. // Created by Rafal Augustyniak on 01.09.2013.
  6. // Copyright (c) 2013 Rafal Augustyniak. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ActiveViewController.h"
  10. @class RAViewController;
  11. @protocol CategoryMenuDelegate <NSObject>
  12. -(void) SelectCategory:(NSString *)category;
  13. @end
  14. @interface RAViewController : ActiveViewController
  15. @property (nonatomic, weak) id<CategoryMenuDelegate> CateMenu_delegate;
  16. -(void) SetMenu:(NSDictionary*) menu;
  17. //@property (strong, nonatomic) IBOutlet UINavigationItem *header;
  18. @property (strong, nonatomic) IBOutlet UINavigationBar *headerview;
  19. @property (strong, nonatomic) IBOutlet UIView *treeContainer;
  20. //@property (strong,nonatomic) id rootViewController;
  21. //@property (strong, nonatomic) IBOutlet UINavigationItem *navi_item;
  22. //@property (strong,nonatomic) UITapGestureRecognizer *tapGesture ;
  23. @property (strong, nonatomic) IBOutlet UILabel *label_net_err;
  24. @end