일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Protocol
- Human interface guide
- swift documentation
- HIG
- uiscrollview
- ribs
- ios
- 리펙토링
- uitableview
- UITextView
- 리펙터링
- 리팩토링
- collectionview
- swiftUI
- Clean Code
- UICollectionView
- combine
- Observable
- Refactoring
- 애니메이션
- rxswift
- RxCocoa
- 클린 코드
- map
- SWIFT
- clean architecture
- 스위프트
- tableView
- Xcode
- MVVM
- Today
- Total
목록의존성 설정 방법 (2)
김종권의 iOS 앱 개발 알아가기
* 목차 프로젝트 준비 이전 포스팅글에서 알아본대로 아래처럼 세팅 . └── Tuist └── Templates └── app ├── AppDelegate.stencil ├── LaunchScreen.stencil ├── Project.stencil ├── ViewController.stencil ├── Workspace.stencil └── app.swift tuist scaffold app --name MyApp 실행 . ├── Tuist │ └── Templates │ └── app │ ├── AppDelegate.stencil │ ├── LaunchScreen.stencil │ ├── Project.stencil │ ├── ViewController.stencil │ ├── Workspace.st..
* 목차 tuist scaffold, tuist generate로 메인 프로젝트를 .app 생성 주의) 1) 이름을 꼭 Tuist, Templates으로 아래처럼 설정해야 동작함 2) Templates하위에 있는 폴더 이름과 그 폴더 안에 있는 .swift 파일 이름이 동일해야함 (app 디렉토리 == app.swift) . └── Tuist └── Templates └── app ├── Project.stencil └── app.swift (Project.stencil) import ProjectDescription let project = Project( name: "{{ name }}", targets: [ Target( name: "{{ name }}", platform: .iOS, product..