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
- 리펙토링
- ribs
- 클린 코드
- MVVM
- UITextView
- RxCocoa
- Clean Code
- UICollectionView
- uitableview
- swiftUI
- tableView
- Human interface guide
- uiscrollview
- SWIFT
- map
- Observable
- 리펙터링
- rxswift
- collectionview
- HIG
- combine
- Xcode
- ios
- 스위프트
- Refactoring
- 리팩토링
- clean architecture
- swift documentation
- Protocol
- 애니메이션
Archives
- Today
- Total
목록Optimization Level (1)
김종권의 iOS 앱 개발 알아가기
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cnWVPH/btrTtj6BRxz/x3kOS0Alxq7mqoK1V56xkk/img.png)
Optimization Level 종류 *Optimization Level이란? 컴파일러 옵션의 종류를 의미 Onone: debug 모드 (최소한의 최적화와 디버그 정보 기록 o) O: release 모드 (최적화 수행과 디버그 정보 기록 x) Osize: 성능보다 코드 사이즈를 줄이는 것에 최적화 Optimization Level 설정 방법 Xcode > Build Settings > Swift Compiler - Optimization Level에서 설정 Debug의 디폴트값은 -Onone (최적화는 되지 않지만 디버그 정보 기록 o) Release의 디폴트값은 -O (최적화하고 디버그 정보 기록 x) cf) Apple Clang - Code Generation 부분은 Objective-C 옵션 as..
iOS 응용 (swift)
2022. 12. 13. 23:21