SlideController alternatives and similar libraries
Based on the "Pagination" category.
Alternatively, view SlideController alternatives based on common mentions on social networks and blogs.
-
CHIPageControl
A set of cool animated page controls written in Swift to replace boring UIPageControl. Mady by @ChiliLabs - https://chililabs.io -
PageControls
This is a selection of custom page controls to replace UIPageControl, inspired by a dribbble found here: https://dribbble.com/shots/2578447-Page-Control-Indicator-Transitions-Collection
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SlideController or a related project?
README
SlideController is a simple and flexible UI component fully written in Swift. Built using power of generic types, it is a nice alternative to UIPageViewController.
[Horizontal](Example/Assets/horizontal.gif) [Vertical](Example/Assets/vertical.gif) [Carousel](Example/Assets/carousel.gif)
Requirements
- iOS 9.0+
- Xcode 10.2+
- Swift 5.0+
Installation
CocoaPods
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate SlideController into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target '<Your Target Name>' do
pod 'SlideController'
end
Then, run the following command:
$ pod install
Usage
import SlideController
1) Create content
let content = [
SlideLifeCycleObjectBuilder<PageLifeCycleObject>(),
SlideLifeCycleObjectBuilder<PageLifeCycleObject>(),
SlideLifeCycleObjectBuilder<PageLifeCycleObject>()
]
PageLifeCycleObject
is any object conforms toInitializable, Viewable, SlidePageLifeCycle
protocols
2) Initialize SlideController
slideController = SlideController<CustomTitleView, CustomTitleItem>(
pagesContent: content,
startPageIndex: 0,
slideDirection: .horizontal)
CustomTitleView
is subclass ofTitleScrollView<CustomTitleItem>
CustomTitleItem
is subclass ofUIView
and conforms toInitializable, ItemViewable, Selectable
protocols
3) Add slideController.view
to view hierarchy
4) Call slideController.viewDidAppear()
and slideController.viewDidDisappear()
in appropriate UIViewController methods:
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
slideController.viewDidAppear()
}
override func viewDidDisappear(_ animated: Bool) {
super.viewDidDisappear(animated)
slideController.viewDidDisappear()
}
Documentation
SlideController
Default initializer of SlideController
.
pagesContent
- initial content of controller, can be empty.
startPageIndex
- page index that should be displayed initially.
slideDirection
- slide direction. .horizontal
or .vertical
.
public init(pagesContent: [SlideLifeCycleObjectProvidable],
startPageIndex: Int = 0,
slideDirection: SlideDirection)
Returns titleView
instanсe of TitleScrollView
.
public var titleView: T { get }
Returns LifeCycleObject
for currently displayed page.
public var currentModel: SlideLifeCycleObjectProvidable? { get }
Returns array of LifeCycleObject
that corresponds to SlideController
's content.
public private(set) var content: [SlideLifeCycleObjectProvidable]
When set to true
unloads content when it is out of screen bounds. The default value is true
.
public var isContentUnloadingEnabled: Bool { get set }
When set to true
scrolling in the direction of last item will result jumping to the first item. Makes scrolling infinite. The default value is false
.
public var isCarousel: Bool { get set }
If the value of this property is true
, content scrolling is enabled, and if it is false
, content scrolling is disabled. The default is true
.
public var isScrollEnabled: Bool { get set }
Appends pages array of SlideLifeCycleObjectProvidable
to the end of sliding content.
public func append(object objects: [SlideLifeCycleObjectProvidable])
Inserts SlideLifeCycleObjectProvidable
page object at index
in sliding content.
public func insert(object: SlideLifeCycleObjectProvidable, index: Int)
Removes a page at index
.
public func removeAtIndex(index: Int)
Slides content to page at pageIndex
with sliding animation if animated
is set to true
. Using forced
is not recommended, it will perform shift even if other shift animation in progress or pageIndex
equals current page. The default value of animated
is true
. The default value of forced
is false
.
public func shift(pageIndex: Int, animated: Bool = default, forced: Bool = default)
Slides content the next page with sliding animation if animated
is set to true
. The default value of animated
is true
.
public func showNext(animated: Bool = default)
Lets the SlideController
know when it is displayed on the screen. Used for correctly triggering LifeCycle
events.
public func viewDidAppear()
Lets the SlideController
know when it is not displayed on the screen. Used for correctly triggering LifeCycle
events.
public func viewDidDisappear()
TitleScrollView
Alignment of title view. Supports .top
, .bottom
, .left
, .right
. The default value of alignment
is .top
.
public var alignment: SlideController.TitleViewAlignment { get set }
The size of TitleScrollView
. For .horizontal
slide direction of SlideController
the titleSize
corresponds to height
. For .vertical
slide direction of SlideController
the titleSize
corresponds to width
. The default value of titleSize
is 84
.
open var titleSize: CGFloat { get set }
Array of title items that displayed in TitleScrollView
.
open var items: [TitleItem] { get }
*Note that all licence references and agreements mentioned in the SlideController README section above
are relevant to that project's source code only.