matrix3003
matrix3003

Reputation: 398

Is there a way in Xcode to inquiry file statistics: total lines, total statements etc.?

I was looking for something I believe very basic - the total number of lines, not showing line numbers for every line. I would appreciate if you know how to do it, in particular in Xcode5. Thanks!

Upvotes: 1

Views: 96

Answers (2)

pulkit
pulkit

Reputation: 91

if you want that Xcode editor show line numbers for every line in Xcode 5 simply hold down the cmd and , buttons together and a window will pop up.like below imageenter image description here

just click the line numbers and what ever you want in editor.... i hope this will help you

Upvotes: 1

Anoop Vaidya
Anoop Vaidya

Reputation: 46543

You can see it by scrolling down to last line to see Number of lines by enabling this :

enter image description here

Or, you can use terminal command to find as :

wc -l AppDelegate.m

Upvotes: 1

Related Questions