Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Last active May 27, 2019 08:47
Show Gist options
  • Save AppleCEO/3a8bfa5b1823c192f7bfae49ecd40880 to your computer and use it in GitHub Desktop.
Save AppleCEO/3a8bfa5b1823c192f7bfae49ecd40880 to your computer and use it in GitHub Desktop.
실패 가능한 이니셜라이저 예제
struct Animal {
let species: String
init?(species: String) {
if species.isEmpty { return nil }
self.species = species
}
}
var animal = Animal(species: "")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment