Skip to content

Instantly share code, notes, and snippets.

@vknabel
Last active August 29, 2015 14:24
Show Gist options
  • Save vknabel/bb69c182f4e6fbf08235 to your computer and use it in GitHub Desktop.
Save vknabel/bb69c182f4e6fbf08235 to your computer and use it in GitHub Desktop.
import UIKit
extension UIImage {
enum AssetIdentifier: String {
case AppIcon = "AppIcon"
case DefaultCover = "default-cover"
}
convenience init!(assetIdentifier: AssetIdentifier) {
self.init(named: assetIdentifier.rawValue)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment