Improve rotation support for ASPagerNode

This commit is contained in:
Michael Schneider
2016-04-27 15:46:49 -07:00
parent 1847b5e947
commit 1c6686e5d6
5 changed files with 128 additions and 46 deletions

View File

@@ -89,7 +89,10 @@
/// The underlying ASCollectionView object.
@property (nonatomic, readonly) ASCollectionView *view;
/// Scroll the contents of the receiver to ensure that the page is visible.
/// Returns the current page index
@property (nonatomic, assign, readonly) NSInteger currentPageIndex;
/// Scroll the contents of the receiver to ensure that the page is visible
- (void)scrollToPageAtIndex:(NSInteger)index animated:(BOOL)animated;
@end