Skip to content

Instantly share code, notes, and snippets.

View markcleonard's full-sized avatar

Mark Leonard markcleonard

View GitHub Profile
@markcleonard
markcleonard / StoryboardCreatable.swift
Last active September 30, 2016 11:10
Storyboard Creatable
import UIKit
enum Storyboard: String {
case main = "Main"
case history = "History"
case more = "More"
func storyboard() -> UIStoryboard {
return UIStoryboard(name: rawValue, bundle: nil)