Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- clean architecture
- 리펙토링
- 리팩토링
- Clean Code
- Observable
- ios
- Refactoring
- map
- uitableview
- UICollectionView
- swiftUI
- HIG
- collectionview
- Xcode
- tableView
- 클린 코드
- UITextView
- SWIFT
- 리펙터링
- Human interface guide
- ribs
- swift documentation
- 스위프트
- combine
- uiscrollview
- MVVM
- rxswift
- RxCocoa
- Protocol
- 애니메이션
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift 공식 문서] 6. Functions (함수) 본문
print(_:separator:terminator)
- separator: 각 item 사이의 공간 space (디폴트 " ")
- terminator: print안의 아이템들을 모두 출력 후 마지막 문자 (디폴트 '\n')
parameter에 함수 유형
- 고차 함수(higher order function) 성격: 함수를 매개변수, 변수로 받을 수 있고 리턴 할 수 있는 성질
- cf) 일급 객체 성격: 함수를 변수에 대입할 수 있는 형태
- higher order function의 개념: https://ios-development.tistory.com/104
- ex) 함수를 매개변수로 받는 형태
func printMathResult(_ mathFunction: (Int, Int) -> Int, _ a: Int, _ b: Int) {
print("result: \(mathFunction(a, b))")
}
printMathResult(addTwoInts, 3, 5)
func addTwoInts(_ a: Int, _ b: Int) -> Int {
return a + b
}
- ex) 함수를 리턴하는 형태
let myFunction = chooseStepFunction(backward: true)
myFunction(1) // 0
func stepForward(_ input: Int) -> Int {
return input + 1
}
func stepBackward(_ input: Int) -> Int {
return input - 1
}
func chooseStepFunction(backward: Bool) -> (Int) -> Int {
return backward ? stepBackward : stepForward
}
* 참고
https://docs.swift.org/swift-book/LanguageGuide/Functions.html
'swift 공식 문서' 카테고리의 다른 글
[iOS - swift 공식 문서] 8. Enumerations (열거형) (0) | 2021.06.24 |
---|---|
[iOS - swift 공식 문서] 7. Closure (클로저) (0) | 2021.06.24 |
[iOS - swift 공식 문서] 5. Control flow (흐름 제어) (0) | 2021.06.21 |
[iOS - swift 공식 문서] 4. Collection Types (컬렉션 타입) (0) | 2021.06.19 |
[iOS - swift 공식 문서] 3. String (문자열) (0) | 2021.06.18 |
Comments