일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 애니메이션
- map
- UICollectionView
- 스위프트
- UITextView
- Refactoring
- HIG
- SWIFT
- 리팩토링
- rxswift
- ios
- uiscrollview
- combine
- 리펙토링
- collectionview
- clean architecture
- 클린 코드
- tableView
- swiftUI
- Protocol
- Clean Code
- Human interface guide
- Xcode
- 리펙터링
- MVVM
- ribs
- uitableview
- swift documentation
- RxCocoa
- Observable
- Today
- Total
목록AppStore (2)
김종권의 iOS 앱 개발 알아가기
현재 버전과 앱스토어에 있는 최신버전 확인 방법 현재 버전 정보 가져오기 let appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String 상수로 설정 cf) bundle id와 buildNumber는 아래와 같이 획득 struct Constants { struct System { static let appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String static let bundleIdentifier = Bundle.main.infoDictionary?["CFBundleIdentifier"] as? String static ..
1. fastlane이란? 2. Bundler란? cocoapod 동기화 방법? 3. fastlane match (certificate, provisioning profile 정보를 git에 저장) 4. fastlane build_app (빌드, firebase에 배포) 5. fastlane 앱 스토어에 배포 (App Store Connect) 6. fastlane register devices, 디바이스 정보(UDID, Name) Apple Developer에 등록 방법 (register_devices) *7. fastlane 총 정리 및 phase별 configuration 설정, 환경변수 설정 *8. fastlane과 Bitrise를 이용한 자동 배포 구축 방법 cf) fastlane 환경 변수 (..