LibraryViewController.h 784 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // LibraryViewController.h
  3. //
  4. //
  5. // Created by Alexi on 3/11/14.
  6. // Copyright (c) 2014 Harman. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "LibraryNavigationPanel.h"
  10. #import "PageScrollView.h"
  11. #import "LibraryScrollView.h"
  12. @interface LibraryViewController : BaseViewController<LibraryNavigationPanelDelegate, PageScrollViewDelegate>
  13. {
  14. @protected
  15. LibraryNavigationPanel *_navigationPanel;
  16. LibraryScrollView *_libraryScrollView;
  17. @protected
  18. NSMutableArray *_libraryPages;
  19. }
  20. @property (nonatomic, strong) LibraryNavigationPanel *navigationPanel;
  21. @property (nonatomic, strong) LibraryScrollView *libraryScrollView;
  22. @property (nonatomic, strong) NSMutableArray *libraryPages;
  23. - (NSArray *)menuTitles;
  24. @end