All Projects → redbooth → SimplePagedView

redbooth / SimplePagedView

Licence: MIT license
A UIPageViewController replacement built to be as simple as possible

Programming Languages

swift
15916 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to SimplePagedView

ios ui recipe showcase
iOSアプリ開発 - UI実装であると嬉しいレシピブック掲載サンプル
Stars: ✭ 54 (-29.87%)
Mutual labels:  uikit, uipageviewcontroller
tiny-ui
⚛️ A friendly UI component set for React.js
Stars: ✭ 202 (+162.34%)
Mutual labels:  uikit
void-ui
A UI toolkit for Vue.js.
Stars: ✭ 20 (-74.03%)
Mutual labels:  uikit
XCoordinator-Example
XCoordinator-Example serves as an MVVM-C example app for XCoordinator
Stars: ✭ 53 (-31.17%)
Mutual labels:  uikit
TJImageCache
A fast, easy to use Objective-C image cache
Stars: ✭ 25 (-67.53%)
Mutual labels:  uikit
pikko
Color picker for iOS made with ❤️
Stars: ✭ 34 (-55.84%)
Mutual labels:  uikit
PopItUp
a Popup system for iOS
Stars: ✭ 26 (-66.23%)
Mutual labels:  uikit
electron-markdown-editor
A simple electron markdown editor made with Uikit, Codemirror and markdown-it. Support for MathJax, code highlighting, live preview, and more.
Stars: ✭ 54 (-29.87%)
Mutual labels:  uikit
swiftui-example
SwiftUI 示例,技巧和技术集合,帮助我构建应用程序,解决问题以及了解SwiftUI的实际工作方式。
Stars: ✭ 109 (+41.56%)
Mutual labels:  uikit
WWDC-2017-Session-230-Advance-Animations-with-UIKit
Example project for "Sam's Photo" animations demonstrated in Session 203
Stars: ✭ 35 (-54.55%)
Mutual labels:  uikit
uikit collection
Uikit3 vendor, yform template and Helper-AddOn for Demo
Stars: ✭ 26 (-66.23%)
Mutual labels:  uikit
Shades
Easily add drop shadows, borders, and round corners to a UIView.
Stars: ✭ 14 (-81.82%)
Mutual labels:  uikit
RCPickerButton
Simple button for marking some items as selected.
Stars: ✭ 17 (-77.92%)
Mutual labels:  uikit
ios-nd-uikit-cont.
Resources for Udacity's UIKit Fundamentals course (continued).
Stars: ✭ 19 (-75.32%)
Mutual labels:  uikit
StackableTableView
A UITableView subclass that enables setting an array of views for both headers and footers utilizing UIStackView
Stars: ✭ 72 (-6.49%)
Mutual labels:  uikit
SwiftCurrent
A library for managing complex workflows in Swift
Stars: ✭ 286 (+271.43%)
Mutual labels:  uikit
WWDC17
WWDC 2017 Scholarship Submission by Phil Zet (Philipp Zakharchenko)
Stars: ✭ 14 (-81.82%)
Mutual labels:  uikit
iOS-Developer-Nanodegree
Learn how to program apps for the iPhone and iPad
Stars: ✭ 20 (-74.03%)
Mutual labels:  uikit
CoachMarks
UI component to focus the user's attention on parts of the app
Stars: ✭ 37 (-51.95%)
Mutual labels:  uikit
okeedesign-mobile-vue
High Performance, Flexiable Configuration, Various Components
Stars: ✭ 139 (+80.52%)
Mutual labels:  uikit

SimplePagedView

SimplePagedView is an iOS component that makes it as easy as possible to set up a page view for things like onboarding or presenting information.

simulator screen shot - iphone 8 - 2018-12-12 at 12 54 46

Installation

pod 'SimplePagedView'

Usage

Programmatic setup

// 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/frame
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].