Skip to content

Instantly share code, notes, and snippets.

@gmoraleda
Last active October 3, 2018 09:35
Show Gist options
  • Save gmoraleda/546732fce13e13231915b15fd7196ff1 to your computer and use it in GitHub Desktop.
Save gmoraleda/546732fce13e13231915b15fd7196ff1 to your computer and use it in GitHub Desktop.
Car.swift
internal var oldImageUrl: URL? {
return URL(string: carImageUrl ?? "")
}
internal var newImageUrl: URL? {
let urlString = Constants.URL.images
.replacingOccurrences(of: "{modelIdentifier}", with: modelIdentifier ?? "")
.replacingOccurrences(of: "{color}", with: color ?? "")
return URL(string: urlString)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment