Storyboardable 0.1.0

Storyboardable 0.1.0

Maintained by outofcode.



  • By
  • outofcoding

Storyboardable

CI Status Version License Platform

I want storyboard simple use.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

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

pod 'Storyboardable'

Author

outofcoding, [email protected] and bear, [email protected]

License

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

Use.

Enum Case

Create an enum that inherits Storyboardable. case is storyboard file identity Storyboard ID.

enum Main : Storyboardable {
    case first
    case second
    case test
}

Use Code

// Get storyboard
let storyboard = Main.storyboard
print("storyboard = \(storyboard)")

// Use storyboard initial ViewController
let initial = Main.initial!
present(initial, animated: true, completion: nil)

// Use storyboard identifier ViewController
let first = Main.first.get
present(first, animated: true, completion: nil)

// Get Information
let test = Main.test
let name = test.name
let identifier = test.identifier ?? "none"
print("name = \(name), identifier = \(identifier)")

// Direct push or present
Main.test.present(self)
Main.test.push(self)

Builder Case

Use Code

let builder = StoryboardBuilder(name: "Main")
let initController = builder.get("test")!
present(initController, animated: true, completion: nil)

let secondController = builder.get("second")!
present(secondController, animated: true, completion: nil)