diff --git a/README.md b/README.md index d510b943..6729b5e4 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,8 @@ Version 2.0.0 (master) * Bug Fix Issue #45: When the current tab is tapped by the user, and later swiping to another tab, the indicator now changes as expected. * Bug Fix: When scrolling between tabs with progressive indicator, the indicator now scrolls swiftly. It used to jump for an instant. * Bug Fix Issue #54: Twitter PagerTabStrip wasn't loading the navigation title correctly. -* Bug Fix Issue ##32: Demo for Nav Button Bar Example fix. +* Bug Fix Issue #32: Demo for Nav Button Bar Example fix. +* Bug Fix Issue #32: Twitter Pager white dots that mark which tab is currently selected is non selectable now. Version 1.1.1 diff --git a/XLPagerTabStrip/XL/Controllers/XLTwitterPagerTabStripViewController.m b/XLPagerTabStrip/XL/Controllers/XLTwitterPagerTabStripViewController.m index 462747c9..2d950a16 100644 --- a/XLPagerTabStrip/XL/Controllers/XLTwitterPagerTabStripViewController.m +++ b/XLPagerTabStrip/XL/Controllers/XLTwitterPagerTabStripViewController.m @@ -45,6 +45,7 @@ - (void)viewDidLoad self.navigationItem.titleView = self.navigationView; } + [self.navigationView addObserver:self forKeyPath:@"frame" options:NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld context:0]; [self.navigationView setFrame:CGRectMake(0, 0, CGRectGetWidth(self.navigationController.navigationBar.frame) , CGRectGetHeight(self.navigationController.navigationBar.frame))]; @@ -125,6 +126,7 @@ -(FXPageControl *)navigationPageControl [_navigationPageControl setDotSpacing:4.0f]; [_navigationPageControl setDotColor:[UIColor colorWithWhite:1 alpha:0.4]]; [_navigationPageControl setSelectedDotColor:[UIColor whiteColor]]; + [_navigationPageControl setUserInteractionEnabled:false]; return _navigationPageControl; }