medium.com/@rkdthd0403/swift-class-func-vs-static-func-7e6feb264147
스위프트에는 세가지 함수 종류가 있습니다. 앞에 붙는 키워드에 따라서 instance / class / static 으로 나뉩니다.
class Sample {// 1. Instance 함수
func myInstanceFunc() {}// 2. class 함수
class func myClassFunc() {}// 3. static 함수
static func myStaticFunc() {}
}
'[iOS] App Development' 카테고리의 다른 글
Protocols and Delegates 정리 (0) | 2020.10.18 |
---|---|
Optional 정리! 쉽게 설명 (0) | 2020.10.15 |
AVFoundation : AVAudioPlayer : How to Play Sounds on iOS (0) | 2020.10.14 |
Cocoapod 문제 해결 방법 (ld: duplicate symbols for architecture x86_64) (0) | 2020.09.27 |
Cocoapod 문제 해결 방법 (ld: duplicate symbols for architecture x86_64) (0) | 2020.09.27 |