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
- 리펙터링
- RxCocoa
- 클린 코드
- uiscrollview
- MVVM
- Xcode
- swiftUI
- HIG
- combine
- ios
- 리펙토링
- swift documentation
- Observable
- rxswift
- tableView
- collectionview
- ribs
- uitableview
- SWIFT
- 스위프트
- 리팩토링
- Clean Code
- Human interface guide
- Refactoring
- UITextView
- Protocol
- UICollectionView
- clean architecture
- map
- 애니메이션
Archives
- Today
- Total
목록디바이스 분기 (1)
김종권의 iOS 앱 개발 알아가기
[iOS - swift] device 분기 방법, 시뮬레이터 분기문 (targetEnvironment, os, arch, swift)
시뮬레이터 분기 방법 #if targetEnvironment(simulator) 사용 #if targetEnvironment(simulator) print("simulator") #else print("no simulator") #endif 아키텍쳐, os 분기 방법 아키텍쳐는 arch() 사용, os는 os() 사용 os() 안에 넣을 수 있는 것 macOS, iOS, watchOS, tvOS, Linux, Windows, FreeBSD, Android, PS4 arch() 안에 넣을 수 있는 것 x86_64, arm, arm64, i386, powerpc64, powerpc64le, s390x ex) 사용 예시 // macOS 시뮬레이터 분기 #if (arch(i386) || arch(x86_64))..
iOS 응용 (swift)
2024. 1. 27. 14:50