diff --git a/SLPagingView/SLPagingViewController.h b/SLPagingView/SLPagingViewController.h index e35652f..9a52aa5 100644 --- a/SLPagingView/SLPagingViewController.h +++ b/SLPagingView/SLPagingViewController.h @@ -28,6 +28,11 @@ typedef void(^SLPagingViewDidChanged)(NSInteger currentPage); @interface SLPagingViewController : UIViewController +/* +* The view containing the nav bar menu selection views +*/ +@property (nonatomic, strong) UIView *navigationBarView; + /* * Delegate: Called when the user scroll horizontally * Allow to redefine all behaviors + customized the navigation items diff --git a/SLPagingView/SLPagingViewController.m b/SLPagingView/SLPagingViewController.m index dd645b6..bb30974 100644 --- a/SLPagingView/SLPagingViewController.m +++ b/SLPagingView/SLPagingViewController.m @@ -12,7 +12,6 @@ @interface SLPagingViewController () @property (nonatomic, strong) UIScrollView *scrollView; @property (nonatomic, strong) UIPageControl *pageControl; -@property (nonatomic, strong) UIView *navigationBarView; @property (nonatomic, strong) NSMutableArray *navItemsViews; @property (nonatomic, strong) NSMutableArray *controllerReferences; @property (nonatomic) BOOL needToShowPageControl;