Reputation: 398
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
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 image
just click the line numbers and what ever you want in editor.... i hope this will help you
Upvotes: 1
Reputation: 46543
You can see it by scrolling down to last line to see Number of lines by enabling this :
Or, you can use terminal command to find as :
wc -l AppDelegate.m
Upvotes: 1