nurdabolatov / Intro

An iOS framework to easily create simple animated walkthrough, written in Swift.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Intro

Version License Platform

demo demo

Overview

An iOS framework to easily create simple animated walkthrough, written in Swift.

Requirements

  • iOS8

Installation with CocoaPods

Intro is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "Intro"

Usage

import Intro

let vc = IntroViewController()
vc.items = [
    ("text", UIImage(named: "1")),
    ("text", UIImage(named: "2")),
    ("text", UIImage(named: "3"))
]
vc.animationType = .rotate
vc.titleColor = .black
vc.titleFont = .systemFont(ofSize: 20)
vc.imageContentMode = .scaleAspectFit
vc.closeTitle = "READY"
vc.closeColor = .white
vc.closeBackgroundColor = .black
vc.closeBorderWidth = 0
vc.closeBorderColor = UIColor.black.cgColor
vc.closeCornerRadius = 2
vc.didClose = {
    self.showButton.setTitle("Show again", for: .normal)
}
present(vc, animated: true, completion: nil)

Available animation types

public enum IntroAnimationType {
    case raise
    case rotate
}

Example Project

An example project is included with this repo. To run the example project, clone the repo, and run pod install from the Example directory first.

Author

Nurdaulet, b.nurdaulet.b@gmail.com

License

Intro is available under the MIT license. See the LICENSE file for more info.

About

An iOS framework to easily create simple animated walkthrough, written in Swift.

License:MIT License


Languages

Language:Swift 46.4%Language:Shell 46.2%Language:Ruby 4.9%Language:Objective-C 2.5%