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
- 리팩토링
- 클린 코드
- swiftUI
- uiscrollview
- swift documentation
- 스위프트
- RxCocoa
- 애니메이션
- Clean Code
- 리펙터링
- collectionview
- ribs
- ios
- 리펙토링
- tableView
- Observable
- SWIFT
- uitableview
- clean architecture
- rxswift
- Xcode
- UICollectionView
- Human interface guide
- Protocol
- UITextView
- MVVM
- HIG
- combine
- map
- Refactoring
Archives
- Today
- Total
목록퀵 헬프 주석 (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bGcRey/btraRxPgzyY/7NpY1v23DjPsoCMkmX2ZP0/img.png)
일반 주석 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