A simple custom/image pagedView in swift example - Source App


TAG:  PageviewController  ,  Pagerview  ,  Slider   ,  Swift 

Licence:  MIT

Classification:  PageviewController

Platform:  IOS

Language:  Swift

Device:
iPhone / iPad

Download

Installation

pod 'SimplePagedView'

Usage

// Create a PagedViewController by providing it with a view for each page you'd like it to contain
let simplePagedView = SimplePagedView(with:
    LogoView(presenter: welcomePresenter),
    CardPageView(image: ThemeManager.Images.welcomeTourSlide1,
                        subtitle: "Complete and resolve tasks on the go"),
    CardPageView(image: ThemeManager.Images.welcomeTourSlide2,
                        subtitle: "Comment on tasks and conversations"),
    CardPageView(image: ThemeManager.Images.welcomeTourSlide3,
                        subtitle: "Add files and pictures in seconds")
)
 
// Add as subview and setup constraints/frameUIKit must be imported. If you are using SwiftSpinner in an App Extension, you must add EXTENSION to your Other Swift Flags Build Settings.

0 Comments: