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
- map
- collectionview
- Xcode
- swiftUI
- UICollectionView
- combine
- ios
- uiscrollview
- Refactoring
- 스위프트
- 리펙토링
- Protocol
- uitableview
- Human interface guide
- rxswift
- 애니메이션
- 리펙터링
- HIG
- tableView
- ribs
- UITextView
- MVVM
- 클린 코드
- Observable
- Clean Code
- clean architecture
- RxCocoa
- SWIFT
- 리팩토링
- swift documentation
Archives
- Today
- Total
목록퀵 헬프 주석 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] 주석 처리, 퀵 헬프 주석, //, ///
일반 주석 vs 퀵 헬프 주석 일반 주석: // 퀵 헬프 주석: /// 퀵 헬프 Xcode에서 레퍼런스 문서의 요약된 내용을 보여주는 기능 option + 왼쪽 마우스 클릭 cmd + option + 3 퀵 헬프에 사용되는 주석 /// 사용 단축키: cmd + option + / /// 해당 클래스는 예제 클래스 class MyClass { let myProperty: Int init(myProperty: Int) { self.myProperty = myProperty } } 사용하는쪽에서 주석 확인 description삽입: > 사용 /** (해당 부분은 summary) 해당 클래스는 예제 클래스 > (해당 부분은 description) */ class MyClass { let myProperty: I..
iOS 응용 (swift)
2021. 8. 1. 21:51