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 |
Tags
- rxswift
- uiscrollview
- 애니메이션
- Clean Code
- 리펙토링
- collectionview
- ribs
- MVVM
- Human interface guide
- 리펙터링
- swift documentation
- Observable
- 리팩토링
- Refactoring
- SWIFT
- 스위프트
- Protocol
- Xcode
- HIG
- combine
- 클린 코드
- map
- ios
- RxCocoa
- swiftUI
- UICollectionView
- tableView
- clean architecture
- UITextView
- uitableview
Archives
- Today
- Total
목록renamed: (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bceJAk/btsAxJJIdA8/h1g713XaBoCRiYFYJDYoI1/img.png)
deprecated 알림 표시 특정 메서드가 리펙터링 되거나 버전이 증가한 경우, 기존 메서드 사용을 지양시키고 싶은 경우? @avaialbe(*, deprecated)를 사용 a() 메서드를 deprecated 알림을 주고, b() 메서드를 실행시키고 싶은 경우? class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() a() } func a() { } func b() { } } @available(*, deprecated, message:) 키워드를 사용 @available(*, deprecated, message: "b()를 사용해주세요.") func a() { } 만약 이름만 변경된 메서드가 ..
iOS 응용 (swift)
2023. 11. 20. 01:54