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.
20 lines
409 B
20 lines
409 B
// |
|
// NibResource.swift |
|
// R.swift Library |
|
// |
|
// Created by Mathijs Kadijk on 06-12-15. |
|
// From: https://github.com/mac-cain13/R.swift.Library |
|
// License: MIT License |
|
// |
|
|
|
import Foundation |
|
|
|
/// Represents a nib file on disk |
|
public protocol NibResourceType { |
|
|
|
/// Bundle this nib is in or nil for main bundle |
|
var bundle: Bundle { get } |
|
|
|
/// Name of the nib file on disk |
|
var name: String { get } |
|
}
|
|
|