在Xcode 3中,顯示了當前光標位置的行號。 我在Xcode 4中看不到它。是否有能夠將其打開的設置? 仍是會給我按鍵功能? swift
1)經過單擊左上角的xcode轉到xcode首選項。 xcode
2)而後選擇文字編輯 spa
3)而後選擇顯示:行號,而後單擊複選框啓用它。 code
4)關閉它。 圖片
5)您將在xcode中看到行號。 get
若是您不但願一直顯示行號,那麼找到一段代碼的行號的另外一種方法是,只需單擊最左邊的邊距並建立一個斷點(出現一個小的藍色箭頭),而後轉到斷點導航(⌘7),在其中將列出行號斷點。 您能夠經過右鍵單擊該斷點來刪除它。 it
爲了節省$ 4.99一次使用費,無需處理HomeBrew,也不計算空行。 io
find . -name "*.swift" -print0 | xargs -0 wc -l
終端
若是要排除豆莢: bug
find . -path ./Pods -prune -o -name "*.swift" -print0 ! -name "/Pods" | xargs -0 wc -l
若是您的項目有目標c和敏捷性:
find . -type d \( -path ./Pods -o -path ./Vendor \) -prune -o \( -iname \*.m -o -iname \*.mm -o -iname \*.h -o -iname \*.swift \) -print0 | xargs -0 wc -l
在首選項->文本編輯->顯示:行號中,能夠啓用文件左側的行號。
對於Xcode 4和更高版本,請打開首選項( 命令 + , ),而後在「文本編輯」部分中選中「顯示:行號」。
XCode 8及如下