Skip to content
This repository was archived by the owner on Sep 11, 2021. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 541 Bytes

README.markdown

File metadata and controls

21 lines (14 loc) · 541 Bytes

Say you have this Objective-C code:

- (void)notUsed {
	return;
}

- (void)actuallyUsed {
	return;
}

// ...

[self actuallyUsed];

Thanks to /usr/bin/otool, you can get clues about potentially unused methods, like this:

$ python objc_cover.py /Users/nst/Desktop/iCalReport 
# the following methods may be unreferenced
-[MyClass notUsed]

The idea was put first by "Luke the Hiesterman" on the Apple Objective-C list.