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
- tableView
- Refactoring
- ios
- Clean Code
- SWIFT
- 클린 코드
- HIG
- 스위프트
- MVVM
- rxswift
- 리펙터링
- uitableview
- clean architecture
- ribs
- swiftUI
- map
- RxCocoa
- combine
- 리펙토링
- UITextView
- Protocol
- collectionview
- swift documentation
- 리팩토링
- uiscrollview
- Human interface guide
- Xcode
- UICollectionView
- Observable
- 애니메이션
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
Xcode 불필요한 캐시를 안정적으로 삭제 본문
가장 안전한 방법은 "shift + cmd + k"로 캐시를 삭제하는 방법이 있지만, 이것으로 안된다면
"DerivedData/" 하위의 파일들을 삭제 (이 폴더는 빌드시 생성되는 파일들이므로 안전)
rm -rf ~/Library/Developer/Xcode/DerivedData/*
이것만으로도 불필요한 캐시가 남아 있다면, 다음과 같이 순차적으로 나머지 파일도 삭제
|
killall Xcode |
|
xcrun -k |
|
xcodebuild -alltargets clean |
|
rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache" |
|
rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang.$(whoami)/ModuleCache" |
(가장 안전) |
rm -rf ~/Library/Developer/Xcode/DerivedData/* |
|
rm -rf ~/Library/Caches/com.apple.dt.Xcode/* |
|
open /Applications/Xcode.app |
'iOS 응용 (swift)' 카테고리의 다른 글
[APNs] Apple push notification service (0) | 2020.11.08 |
---|---|
[Deeplink] 딥링크 (URL Scheme, Universal Link) (0) | 2020.11.07 |
[iOS - swift] Custom View (xib) (2) | 2020.11.01 |
[iOS - swift] custom cell(일반 cell, Header cell), Hugging, Compression (0) | 2020.11.01 |
[iOS - swift] Nib, File's Owner, First Responder 개념 (0) | 2020.11.01 |
Comments