Changelog History
Page 1
-
v3.0.0
December 03, 2020๐ Changes:
This version introduces some breaking changes:
Replaced
EMPageViewController
๐
EMPageViewController
has been replaced with our ownPageViewController
implementation, which fixes a bunch of issues (#524, #527, #426). The API of the new page view controller is pretty much identical to the old one, but the names of the types have changed:open class PagingViewController: UIViewController, UICollectionViewDelegate,- EMPageViewControllerDataSource,- EMPageViewControllerDelegate {+ PageViewControllerDataSource,+ PageViewControllerDelegate {- public let pageViewController: EMPageViewController+ public let pageViewController: PageViewController- open func em\_pageViewController(\_ pageViewController: EMPageViewController, viewControllerBeforeViewController viewController: UIViewController) -\> UIViewController? {+ open func pageViewController(\_ pageViewController: PageViewController, viewControllerBeforeViewController viewController: UIViewController) -\> UIViewController? {- open func em\_pageViewController(\_ pageViewController: EMPageViewController, viewControllerAfterViewController viewController: UIViewController) -\> UIViewController? {+ open func pageViewController(\_ pageViewController: PageViewController, viewControllerAfterViewController viewController: UIViewController) -\> UIViewController? {- open func em\_pageViewController(\_ pageViewController: EMPageViewController, isScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController?, progress: CGFloat) {+ public func pageViewController(\_ pageViewController: PageViewController, isScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController?, progress: CGFloat) {- open func em\_pageViewController(\_ pageViewController: EMPageViewController, willStartScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController) {+ public func pageViewController(\_ pageViewController: PageViewController, willStartScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController) {- open func em\_pageViewController(\_ pageViewController: EMPageViewController, didFinishScrollingFrom startingViewController: UIViewController?, destinationViewController: UIViewController, transitionSuccessful: Bool) {+ open func pageViewController(\_ pageViewController: PageViewController, didFinishScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController, transitionSuccessful: Bool) {}
๐ More details about the release can be found here: #452
-
v3.0.0-beta2
September 28, 2020๐ Fixed an issue building due to missing imports #526
-
v3.0.0-beta
September 02, 2020๐ This is pre-release for version 3.0. See #452 for more details on changes.
-
v2.1.0
November 03, 2020- โ Add option to position menu vertically (#412)
- Combine all example targets into single target (#442)
- ๐ Fix missing import causing SwiftPM to fail (#420)
- ๐ Fix memory leak occurring when configuring size cache (#433)
- ๐ Fix issue with initial selection not being set (#438)
- ๐ Fix regression causing indicator not to animate (#441)
- ๐ Fix issues with invalidation of size cache (#444)
-
v2.0.0
August 02, 2020๐ This version introduces a couple of breaking changes that are outlined below. If you're having issues upgrading or you see other breaking changes that are not outlined below, please let us know. More details about the release can be found here: #243.
โ Removed
FixedPagingViewController
๐
FixedPagingViewController
has been removed. You can now initializePagingViewController
directly with an array of view controllers.-FixedPagingViewController(viewControllers: viewControllers)+PagingViewController(viewControllers: viewControllers)
โ Removed generics (#285)
๐
PagingViewController
is not longer generic on thePagingItem
type. This means that all places where you previously had to specify the generic type, or cast to generic type, can be removed.-PagingViewController\<CalendarItem\>()+PagingViewController() -func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, pagingItemForIndex index: Int) -\> T {- return PagingIndexItem(index: index, title: cities[index]) as! T-}+func pagingViewController(\_: PagingViewController, pagingItemAt index: Int) -\> PagingItem {+ return PagingIndexItem(index: index, title: cities[index])+}
๐ Moved size delegate into separate protocol
๐ The
widthForPagingItem
delegate method have been moved out of thePagingViewControllerDelegate
and into a separate protocol calledPagingViewControllerSizeDelegate
. You now need to set thesizeDelegate
property onPagingViewController
:-pagingViewController.delegate = self+pagingViewController.sizeDelegate = self
Replaced
menuItemSource
withregister(cellClass:)
๐ The
menuItemSource
property for customizing the cell type has been removed. Instead you can customize the cell type for a givenPagingItem
by usingregister(cellClass:)
andregister(nib:)
. The benefit of this approach is that we can support multiple cell types in the same menu (#390).- pagingViewController.menuItemSource = .class(type: CalendarPagingCell.self)+ pagingViewController.register(CalendarPagingCell.self, for: CalendarItem.self)
โก๏ธ Updated naming of data sources
โก๏ธ As well as removing generics from the data sources, the naming has also been updated to be a bit more Swift-y.
protocol PagingViewControllerDataSource: class {- func numberOfViewControllers\<T\>(in pagingViewController: PagingViewController\<T\>) -\> Int+ func numberOfViewControllers(in pagingViewController: PagingViewController) -\> Int- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, viewControllerForIndex index: Int) -\> UIViewController+ func pagingViewController(\_: PagingViewController, viewControllerAt index: Int) -\> UIViewController- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, pagingItemForIndex index: Int) -\> T+ func pagingViewController(\_: PagingViewController, pagingItemAt index: Int) -\> PagingItem} protocol PagingViewControllerInfiniteDataSource: class {- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, viewControllerForPagingItem: T) -\> UIViewController+ func pagingViewController(\_: PagingViewController, viewControllerFor pagingItem: PagingItem) -\> UIViewController- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, pagingItemBeforePagingItem: T) -\> T?+ func pagingViewController(\_: PagingViewController, itemBefore pagingItem: PagingItem) -\> PagingItem?- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, pagingItemAfterPagingItem: T) -\> T?+ func pagingViewController(\_ : PagingViewController, itemAfter pagingItem: PagingItem) -\> PagingItem?}
-
v2.0.0-beta
November 17, 2019๐ Please help test this release and let us know if you find any issues! This version introduces a couple of breaking changes that are outlined below. If you're having issues upgrading or you see other breaking changes that are not outlined below, please let us know. More details about the release can be found here: #243.
โ Removed
FixedPagingViewController
๐
FixedPagingViewController
has been removed. You can now initializePagingViewController
directly with an array of view controllers.-FixedPagingViewController(viewControllers: viewControllers)+PagingViewController(viewControllers: viewControllers)
โ Removed generics (#285)
๐
PagingViewController
is not longer generic on thePagingItem
type. This means that all places where you previously had to specify the generic type, or cast to generic type, can be removed.-PagingViewController\<CalendarItem\>()+PagingViewController() -func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, pagingItemForIndex index: Int) -\> T {- return PagingIndexItem(index: index, title: cities[index]) as! T-}+func pagingViewController(\_: PagingViewController, pagingItemAt index: Int) -\> PagingItem {+ return PagingIndexItem(index: index, title: cities[index])+}
๐ Moved size delegate into separate protocol
๐ The
widthForPagingItem
delegate method have been moved out of thePagingViewControllerDelegate
and into a separate protocol calledPagingViewControllerSizeDelegate
. You now need to set thesizeDelegate
property onPagingViewController
:-pagingViewController.delegate = self+pagingViewController.sizeDelegate = self
Replaced
menuItemSource
withregister(cellClass:)
๐ The
menuItemSource
property for customizing the cell type has been removed. Instead you can customize the cell type for a givenPagingItem
by usingregister(cellClass:)
andregister(nib:)
. The benefit of this approach is that we can support multiple cell types in the same menu (#390).- pagingViewController.menuItemSource = .class(type: CalendarPagingCell.self)+ pagingViewController.register(CalendarPagingCell.self, for: CalendarItem.self)
โก๏ธ Updated naming of data sources
โก๏ธ As well as removing generics from the data sources, the naming has also been updated to be a bit more Swift-y.
protocol PagingViewControllerDataSource: class {- func numberOfViewControllers\<T\>(in pagingViewController: PagingViewController\<T\>) -\> Int+ func numberOfViewControllers(in pagingViewController: PagingViewController) -\> Int- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, viewControllerForIndex index: Int) -\> UIViewController+ func pagingViewController(\_: PagingViewController, viewControllerAt index: Int) -\> UIViewController- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, pagingItemForIndex index: Int) -\> T+ func pagingViewController(\_: PagingViewController, pagingItemAt index: Int) -\> PagingItem} protocol PagingViewControllerInfiniteDataSource: class {- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, viewControllerForPagingItem: T) -\> UIViewController+ func pagingViewController(\_: PagingViewController, viewControllerFor pagingItem: PagingItem) -\> UIViewController- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, pagingItemBeforePagingItem: T) -\> T?+ func pagingViewController(\_: PagingViewController, itemBefore pagingItem: PagingItem) -\> PagingItem?- func pagingViewController\<T\>(\_ pagingViewController: PagingViewController\<T\>, pagingItemAfterPagingItem: T) -\> T?+ func pagingViewController(\_ : PagingViewController, itemAfter pagingItem: PagingItem) -\> PagingItem?}