Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Created May 27, 2019 09:06
Show Gist options
  • Select an option

  • Save AppleCEO/0619a5b4dd6ba73e30d133062e7bee7f to your computer and use it in GitHub Desktop.

Select an option

Save AppleCEO/0619a5b4dd6ba73e30d133062e7bee7f to your computer and use it in GitHub Desktop.
편의 이니셜라이저 예제
class Radio {
var channel: Double
init(channel: Double) {
self.channel = channel
}
convenience init(){
self.init(channel: 103.5)
}
}
let radio = Radio()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment