์ผ | ์ | ํ | ์ | ๋ชฉ | ๊ธ | ํ |
---|---|---|---|---|---|---|
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 |
- ํ๋ก๊ทธ๋๋จธ์ค
- algoritm
- SwiftUI ํํ ๋ฆฌ์ผ
- ๋ค์ด๋๋ฏนํ๋ก๊ทธ๋๋ฐ
- SwiftUI Tutorials
- concurrency
- ์ด์งํ์
- 0์ด๋์ด์๋๊ธธ
- ๋์ ๊ณํ๋ฒ
- discardableResult
- ์ฐ์ํ์ค๋ถ๋ถ์์ด์ํฉ
- ๊ธฐ์ด๋ฌธ๋ฒ
- algorithm
- IOS
- Swift
- BFS
- Til
- DynamicProgramming
- GCD
- duno
- SQL
- URLSession
- APPJAM
- binarySearch
- dfs
- HAVIT
- SOPT
- SwiftUI
- ๊ณ ๋์ kit
- GroupBy
- Today
- Total
suvera-dev ๐ฅฆ
Swift ) Closure ๋ณธ๋ฌธ
์ค๋์ ์คํฐ๋ ์น๊ตฌ๋ค๊ณผ ํจ๊ป ํด๋ก์ ์ ๋ํ ๋ด์ฉ์ ๊ณต๋ถํด๋ณด์์ต๋๋ค !
๐Closure ๋?
- ์ผ์ ๊ธฐ๋ฅ์ ํ๋ ์ฝ๋๋ฅผ ํ๋์ ๋ธ๋ก์ผ๋ก ๋ชจ์๋์ ๊ฒ
- func ํค์๋๋ฅผ ์ฌ์ฉํ์ฌ ๋ง๋ค์๋ ํจ์ : named Closure
- ์ผ๋ฐ์ ์ธ ํด๋ก์ : Unnamed Closure๋ฅผ ์ง์นญ
{ (Parameters) -> Return Type in
์คํ ๊ตฌ๋ฌธ
}
๐ฟ1๊ธ ๊ฐ์ฒด๋ก์์ ํน์ง
- ํด๋ก์ ๋ฅผ ๋ณ์๋ ์์์ ๋์
ํ ์ ์์ต๋๋ค.
- ํจ์์ ํ๋ผ๋ฏธํฐ ํ์
์ผ๋ก ํด๋ก์ ๋ฅผ ์ ๋ฌํ ์ ์์ต๋๋ค.
- ํจ์์ ๋ฐํ ํ์ ์ผ๋ก ํด๋ก์ ๋ฅผ ์ฌ์ฉํ ์ ์์ต๋๋ค.
์ผ๋ฐ ํจ์์ Closure์ ์ฌ์ฉ ๋ฐฉ์์ ์ฐจ์ด
: Closure๋ ํจ์๋ฅผ func ํค์๋๋ก ์ ์ธํ๋ ๊ฒ์ด ์๋๋ผ, ํจ์๋ฅผ ๋ณ์์ ์ ์ธํ๋ ํํ๋ฅผ ์ทจํ๊ณ ์์ต๋๋ค.
- ์ผ๋ฐ์ ์ธ ํจ์ ์ฌ์ฉ
var counter = 0
func addCounter() {
counter += 1
}
addCounter()
addCounter()
print(counter) // ๊ฒฐ๊ณผ 2
์ผ๋ฐ์ ์ธ ํจ์๋ ๋ค์๊ณผ ๊ฐ์ด ํจ์๋ช ์ ์ค์ (addCounter)ํ๊ณ , ํด๋น ํจ์๋ช ์ผ๋ก ํจ์๋ฅผ ํธ์ถํ๋ ํํ๋ฅผ ์ทจํฉ๋๋ค.
- Closure ์ฌ์ฉ
var counter = 0
let addCounter = {
counter += 1
}
addCounter()
addCounter()
print(counter) // ๊ฒฐ๊ณผ 2
Closure๋ ๋ณ์์ ๊ฐ์ ์ ์ธํ๋ ๋์ ์ ๋ณ์์ ํจ์ ๋ฅผ ์ ์ธํฉ๋๋ค. ์ฌ๊ธฐ์๋ addCounter ๋ณ์์ ํจ์๋ฅผ ์ ์ธํ์์ต๋๋ค. ๊ทธ๋ฆฌ๊ณ ์ด ๋ณ์๋ ํจ์์ฒ๋ผ ํธ์ถ์ ํ ์ ์์ต๋๋ค.(addCounter() ํํ)
- Inline Closure : ํจ์๋ก ๋ฐ๋ก ์ ์๋ ํํ๊ฐ ์๋ ์ธ์๋ก ๋ค์ด๊ฐ ์๋ ํํ์ ํด๋ก์
let reverseNames = names.sorted(by: { (s1: String, s2: String) -> Bool in return s1 > s2})
์์ ๊ฐ์ ํํ์์ ํด๋ก์ ์ ์ถ์ฝ ํํ์ด ๊ฐ๋ฅํฉ๋๋ค
ํ์ , ๋ฐํํค์๋, ์ธ์์ด๋ฆ์ ์๋ตํ ์ ์์ต๋๋ค
// ํ์
์๋ต : ์ฝ๋์ ๋ชจํธ์ฑ์ ํผํ๊ธฐ ์ํด ํ์
์ ๋ช
์ํ๋ ๊ฒ์ด ์ข์๋๋ ์๋ค.
let reverseNames = names.sorted(by: {s1, s2 in return s1 > s2})
// ๋ฐํ ํค์๋ ์๋ต
let reverseNames = names.sorted(by: {s1, s2 in s1 > s2})
// ์ธ์ ๊ฐ์ ์ถ์ฝ : $0 ๋ถํฐ ์์๋๋ก
let reversedNames = names.sorted(by: { $0 > $1 })
// ์ฐ์ฐ์ ๋ฉ์๋ : ์ฐ์ฐ์๋ง ๋จ๊ธธ ์ ์์
let reversedNames = names.sorted(by: > )
- Trailing closure (ํํ ํด๋ก์ ): ํจ์์ ๋งค๊ฐ๋ณ์ ๋ง์ง๋ง์ผ๋ก ์ ๋ฌ๋๋ ํด๋ก์
์ธ์๋ก ํด๋ก์ ๋ฅผ ๋ฃ๊ธฐ๊ฐ ๊ธธ๋ค๋ฉด ํํ ํด๋ก์ ๋ฅผ ์ฌ์ฉํ์ฌ ํจ์์ ๋ค์ ํํํ ์ ์์ต๋๋ค !
๋ง์ฝ ํด๋ก์ ๋ด๋ถ์ ์ฌ๋ฌ ์ค์ ์คํ ์ฝ๋๊ฐ ์๋ค๋ฉด ํํํด๋ก์ ๋ฅผ ์ฌ์ฉํด ๊ฐ๋
์ฑ์ ๋์ด๋ ๊ฒ์ด ์ข๋ค๊ณ ํฉ๋๋ค
๋ง์ง๋ง ์ ๋ฌ ์ธ์๋ก ์ ๋ฌ๋๋ ํด๋ก์ ์๋ง ํด๋น๋๋ค๋ ๊ฒ์ ๊ธฐ์ต !
let reversedNames = names.sorted { $0 > $1 }
let reversedNames = names.sorted { (s1: String, s2: String) -> Bool in return s1 > s2 }
์์ - Closure๋ฅผ ํ์ฉํ ๋ฐ์ดํฐ ์ ๋ฌ
- ๋ฐ์ดํฐ๋ฅผ ์ ๋ฌ ๋ฐ๋ VC์ ํ๋กํผํฐ ์ ์ธ
var categoryId: Int
var titleText: String
var iconImageId: Int
- ๋ฐ์ดํฐ๋ฅผ ์ ๋ฌํ๋ Cell์์ ํด๋ก์ ์ ์ธ -> Cell ์์ ์๋ ๋ฒํผ์ ๋๋ ์ ๋ ํด๋ก์ ๊ฐ ์คํ ๋๋๋ก !
var presentEditCategoryClosure: (() -> Void)?
private func bind() {
editButton.rx.tap
.bind(onNext: { [weak self] in
self?.presentEditCategoryClosure?()
})
.disposed(by: disposeBag)
}
- CollectionViewDataSource ์์ Cell ์ ๋ฐ์ดํฐ๋ฅผ ์ง์ ํ ๋ ์ค์ ๊ตฌํ ์ฝ๋ ์์ฑ
func collectionView(_ collectionView: UICollectionView,
cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView.dequeueReusableCell(forIndexPath: indexPath) as CategoryCollectionViewCell
cell.configure(type: .manage)
cell.update(data: categories[indexPath.row])
cell.presentEditCategoryClosure = {
let categoryId = self.categories[indexPath.row].id ?? 0
let titleText = self.categories[indexPath.row].title ?? ""
let imageId = self.categories[indexPath.row].imageId ?? 0
self.navigationController?.pushViewController(editCategory, animated: true)
}
- Alert : ํ์ธ ๋ฒํผ์ ๋๋ฅผ ๋ Closure ์ฌ์ฉ
extension UIViewController {
func makeAlert(title: String,
message: String,
okAction: ((UIAlertAction) -> Void)? = nil,
completion : (() -> Void)? = nil) {
let alertViewController = UIAlertController(title: title,
message: message,
preferredStyle: .alert)
let okAction = UIAlertAction(title: "ํ์ธ", style: .default, handler: okAction)
alertViewController.addAction(okAction)
self.present(alertViewController, animated: true, completion: completion)
}
}
self.makeAlert(title: "์นดํ
๊ณ ๋ฆฌ ์์ ", message: "์นดํ
๊ณ ๋ฆฌ ์์ ์ฑ๊ณต", okAction: { [weak self] _ in
self?.titleText = self?.categoryTitleTextField.text ?? ""
self?.sendEditData?()
self?.navigationController?.popViewController(animated: true)
})
๐์ฐธ๊ณ ํ ์ฌ์ดํธ
์ค๋์ Swift ์์ (Closure)
ํด๋ก์ (Closure)๋?
medium.com
Swift Closure
Swift์ closure์ ๋ํด ์์๋ด ๋๋ค.
hcn1519.github.io
๐ ๊ฐ์ด ์คํฐ๋ํ ์น๊ตฌ๋ค์ ํฐ์คํ ๋ฆฌ
[iOS/Swift] Closure์ ๋ํด ์์๋ณด์
๋ค์ด๊ฐ๋ฉฐ ํด๋ก์ ๋ ์ด๋ฅธ๋ฐ ์ด๋ฆ ์๋ ํจ์, โ์ต๋ช ํจ์"๋ก ๋ถ๋ฆฌ๋ ์ฝ๋๋ธ๋ญ์ ๋๋ค. ์ด๋ฒ ๊ฒ์๊ธ์์๋ iOS ๊ฐ๋ฐ์ ํ๋ฉฐ ์ ~๋ง์ ๋ง ๋ง์ด ์ฌ์ฉํ๋ ๋ฌธ๋ฒ์ธ ํด๋ก์ ์ ๋ํด ํ๊ตฌํด๋ณด๋ ์๊ฐ์ ๊ฐ์ง
osoomoovo.tistory.com
๐ ์ถ๊ฐ์ ์ผ๋ก ๊ณต๋ถํ ๋งํ ๋ด์ฉ
๋ค์์๋ Escaping Closure์ Completion Handler์ ๋ํ ๋ด์ฉ๋ ์ ๋ฆฌํด ๋ณด๊ฒ ์ต๋๋น
[SWIFT] Escaping Closure(ํ์ถ ํด๋ก์ )
ํด๋ก์ ์ ๊ธฐ๋ณธ์ ๋ํด ํฌ์คํ ์ ํ ์ ์ด ์์๋๋ฐ์. ์ด๋ฒ์๋ ํด๋ก์ ํ์ฉ์ ๋ํด ํฌ์คํ ์ ํด๋ณผ๊ฒ์. ์ด์ ํฌ์คํ ์ ์๋ณด์ ๋ถ์ ๋ณด๊ณ ์ค์๋ฉด ์ข์ ๊ฒ ๊ฐ์์. [SWIFT] Closure(ํด๋ก์ ) (1/2) ์ค๋์
dongminyoon.tistory.com
[iOS] Completion Handler
Completion Handler ๋ณธ ๋ฌธ์์๋ ํ์์ ๊ณต๋ถ๋ฅผ ์งํํ๋ฉฐ ํ๋ฒ ์ ๋ฆฌ๊ฐ ํ์ํ๋ค๊ณ ์๊ฐํ๋ Completion Handler ์ ๋ํ ๋ด์ฉ์ ๊ธฐ์ฌํ๋ค. Prerequisite Completion Handler ๊ฐ๋ ์ ์๋ฉด ์์๋ก ์ด๋ ค์ด ๊ฐ๋ ์ด๋ค....
duwjdtn11.tistory.com
Swift Escaping Closure ์ดํดํ๊ธฐ
Swift์ Escaping Closure์ ๋ํด ์์๋ด ๋๋ค.
hcn1519.github.io
'Language > Swift' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Swift) ํ๋กํ ์ฝ ์งํฅ ํ๋ก๊ทธ๋๋ฐ (4) | 2022.04.03 |
---|---|
Swift ) ๊ธฐ์ด ๋ฌธ๋ฒ 6์ผ์ฐจ - Class ์ Struct (2) | 2022.02.10 |
Swift ) @discardableResult ๋? (4) | 2022.02.08 |
Swift ) ๊ธฐ์ด ๋ฌธ๋ฒ 5์ผ์ฐจ - UnWrap ์ต์ ๋ ๋ณ์ (0) | 2022.02.07 |
Swift ) ๊ธฐ์ด ๋ฌธ๋ฒ 4์ผ์ฐจ - For ๋ฐ๋ณต๋ฌธ & Wildcard Pattern (0) | 2022.02.07 |