Xcode 6 isn't autocompleting in Swift

前端 未结 10 806
清酒与你
清酒与你 2020-11-29 15:57

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

10条回答
  •  温柔的废话
    2020-11-29 16:46

    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)

提交回复
热议问题