Reputation: 677
In the Apple docs there are a lot of classes that are meant to be subclassed or abstract classes. How can i find which classes are subclass of a given class?
For instance: If i'm looking at UIDummyClassAbstract, how can i find all classes that are subclassing UIDummyClassAbstract?
It would help to get a better overview
Upvotes: 9
Views: 2152
Reputation: 69787
Although it is not a free product, if you were to use AppCode instead of Xcode, this stuff is relatively easy, even for classes that you don't own (like in your example).
Search for Usages
Upvotes: 0
Reputation: 170849
It is not exactly in Documentation but you can inspect class hierarchy this way:
Upvotes: 17