250x250
반응형
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 |
Tags
- github
- pubspec
- ToDoRim
- UIAccessibility
- designPattern
- basic
- COMMIT
- dart
- swiftlint
- enumerations
- Widget
- Swift
- reetcode
- Equatable
- Leetcode
- pubspec.yaml
- xcode
- SwiftGen
- toyproject
- IOS
- GIT
- flutter
- algorithm
- listview
- OSLog
- protocol
- it
- Extentsion
- tip
- keyWindow
Archives
- Today
- Total
수니의 개발새발
[Xcode/Swift] 전처리기, 전처리문(#if DEBUG) (with. Active Compilation Conditions) 본문
iOS - Swift
[Xcode/Swift] 전처리기, 전처리문(#if DEBUG) (with. Active Compilation Conditions)
개발자 수니 2022. 4. 1. 10:36728x90
반응형
코드에서 Debug 모드 분기 처리하는 방법을 알아보다가, 전처리기 사용에 대하여 알게 되었습니다.
📌 이번 글은
Xcode, Swift에서 전처리문 사용법입니다.
전처리기/전처리문
- 컴파일 전에 처리되는 일련의 작업
Active Compilation Conditions
- xcode에서 디폴트로 지원하는 전처리 플래그입니다.
전처리문 소스코드
- 소스코드에서 #if~ 문을 통해 컴파일 유무를 정의할 수 있다.
#if 조건문
...
#endif
Debug 분기
#if DEBUG
print("Debug 모드")
#endif
OS 분기
#if os(iOS)
print("iOS")
#elseif os(macOS)
print("macOS")
#elseif os(watchOS)
print("wathOS")
#endif
🙋🏻♀️ 참고
728x90
반응형
'iOS - Swift' 카테고리의 다른 글
[iOS/Swift] UserDefaults 반환/저장하기 (feat. 자동 로그인 여부 저장) (0) | 2022.06.09 |
---|---|
[iOS/Swift] OSLog (with. extension) (0) | 2022.04.07 |
[iOS/Swift] SwiftLint 규칙 정리 (0) | 2022.03.27 |
[iOS/Swift] Storyboard, ViewController 접근 코드를 Protocol로 정의 (StoryboardInstantiable) (0) | 2022.02.09 |
[iOS/Swift] Color Set으로 Custom Color관리하기 (with. SwiftGen) (0) | 2022.02.08 |
Comments