From 2f4e7642deb35320e7ed73a7f384162cf7dc9bfe Mon Sep 17 00:00:00 2001 From: Jack Date: Mon, 5 Jan 2015 21:00:05 +0800 Subject: [PATCH] Fix the Buttons Example Table View not scroll to top --- .../XL/Controllers/XLButtonBarPagerTabStripViewController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/XLPagerTabStrip/XL/Controllers/XLButtonBarPagerTabStripViewController.m b/XLPagerTabStrip/XL/Controllers/XLButtonBarPagerTabStripViewController.m index 43a064e..59d1f89 100644 --- a/XLPagerTabStrip/XL/Controllers/XLButtonBarPagerTabStripViewController.m +++ b/XLPagerTabStrip/XL/Controllers/XLButtonBarPagerTabStripViewController.m @@ -71,6 +71,7 @@ } self.buttonBarView.labelFont = [UIFont fontWithName:@"Helvetica-Bold" size:18.0f]; self.buttonBarView.leftRightMargin = 8; + [self.buttonBarView setScrollsToTop:NO]; UICollectionViewFlowLayout * flowLayout = (id)self.buttonBarView.collectionViewLayout; [flowLayout setScrollDirection:UICollectionViewScrollDirectionHorizontal]; [self.buttonBarView setShowsHorizontalScrollIndicator:NO];