I am trying to import various libraries which I can\'t remember their exact name. Unfortunately Xcode 6 (using swift
) isn\'t auto completing th
The easiest way to improve xCode speed and to reuse the trick is by creating an alias and call it every time you need it:
1.Open Terminal:
2.Type in to your terminal ( or copy and paste ):
alias xcodeclean="rm -frd ~/Library/Developer/Xcode/DerivedData/* && rm -frd ~/Library/Caches/com.apple.dt.Xcode/*"
3.Final step is to type xcodeclean
(Remember: next time when you want to clean the xCode just call xcodeclean
)