일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 클린 코드
- ribs
- RxCocoa
- 리펙토링
- UICollectionView
- Human interface guide
- Clean Code
- HIG
- swiftUI
- uiscrollview
- tableView
- ios
- 리팩토링
- Observable
- 애니메이션
- uitableview
- Refactoring
- combine
- 스위프트
- map
- 리펙터링
- Protocol
- SWIFT
- Xcode
- MVVM
- swift documentation
- collectionview
- rxswift
- Today
- Total
목록assets (3)
김종권의 iOS 앱 개발 알아가기
Contents.json 개념 Xcode에서 이미지 관리 파일 img.png, img@2x.png, img@3x.png 추가하면 아래처럼 생성 오른쪽 클릭 > Show in Finder로 이동 Contents.json 파일이 존재 json 파일을 보면 images 하위에 filename, idiom, scale이 있고 info가 존재 { "images" : [ { "filename" : "img.png", "idiom" : "universal", "scale" : "1x" }, { "filename" : "img@2x.png", "idiom" : "universal", "scale" : "2x" }, { "filename" : "img@3x.png", "idiom" : "universal", "scale..
SwiftGen R.swift와 같이 프로젝트 리소스를 Swift코드로 생성해주는것 R.swift는 모든 리소스에 대해서 코드화가 되지만, SwiftGen은 Assets파일 따로, String파일 따로 코드화가 가능 문자열을 통해 Image등을 불러올 때 오타가 생길 위험을 피할 수 있는 장점 존재 SwiftGen 설치 전 준비 SwiftGen 설치 전 준비 HomeBrew 설치 (Brewfile을 이용하여 설치할 것) Mint 설치 프로젝트 디렉토리에 Mintfile 생성 SwiftGen/SwiftGen@6.5.1 프로젝트 디렉토리에 Mintfile 실행 mint bootstrap --link # arm cpu인 경우 arch -arm64 mint bootstrap --link * Failed to..