You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
794 B
23 lines
794 B
// |
|
// UIStoryboard+StoryboardResource.swift |
|
// R.swift.Library |
|
// |
|
// Created by Mathijs Kadijk on 07-01-16. |
|
// From: https://github.com/mac-cain13/R.swift.Library |
|
// License: MIT License |
|
// |
|
|
|
import UIKit |
|
|
|
public extension UIStoryboard { |
|
/** |
|
Creates and returns a storyboard object for the specified storyboard resource (R.storyboard.*) file. |
|
|
|
- parameter resource: The storyboard resource (R.storyboard.*) for the specific storyboard to load |
|
|
|
- returns: A storyboard object for the specified file. If no storyboard resource file matching name exists, an exception is thrown with description: `Could not find a storyboard named 'XXXXXX' in bundle....` |
|
*/ |
|
convenience init(resource: StoryboardResourceType) { |
|
self.init(name: resource.name, bundle: resource.bundle) |
|
} |
|
}
|
|
|