일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- UITextView
- clean architecture
- map
- uitableview
- RxCocoa
- uiscrollview
- rxswift
- ios
- tableView
- HIG
- 애니메이션
- Xcode
- 리팩토링
- 리펙터링
- swift documentation
- 스위프트
- swiftUI
- Protocol
- ribs
- SWIFT
- Observable
- UICollectionView
- collectionview
- 클린 코드
- 리펙토링
- MVVM
- combine
- Human interface guide
- Clean Code
- Refactoring
- Today
- Total
목록build (3)
김종권의 iOS 앱 개발 알아가기
1. xcodebuild로 테스트 돌리기 - 개념 (xcodebuild, unit test, ui test)2. xcodebuild로 테스트 돌리기 - 결과 얻어오기 (xcresult, junit, xml)3. xcodebuild로 테스트 돌리기 - xcresult 파일 변환하여 분석하기 (xcrun xcresulttool, xcpretty, junit)xcodebuild란?커멘드 라인으로 build, query, analyze, test, archive할 수 있는 라이브러리Xcode는 GUI 방식인 반면, xcodebuild는 커멘드 라인 방식xcodebuild를 잘 사용하면 CI/CD에서도 빌드를 돌릴 수 있고 활용하면 프로젝트 구조 파악이 용이xcodebuild 기능 살펴보기xcodebuild를 통..
iOS 에서 사용하는 버전의 개념 Xcode에서 관리하는 버전 CFBundleShortVersionString (marketing_version) - Aoo Store에 게시할 때마다 증가해줘야 하는 버전 major.minor.patch CFBundleVersion (Current_Proejct_Version) - 개발자가 내부적으로 확인하기 위한 용도 (날짜를 사용하기도 함 - 2021.12.29.1 ) 코드에서 접근 - Bundle.main.infoDictinoary로 접근 let marketingVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String let currentProjectVersion = Bundle.m..
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 환경 변수 (..