ios - Is there an easy way to find all dependencies of a framework? -
While writing extensions in Swift / ranges in Objective-I, I have to make a structured decision to organize my Xcode project.
. I thought keeping in mind the dependencies of different apple framework would be a good idea.
For example MKMapView class
(see)
I know that I can browse related header files to collect that information which I am looking for. But it is quite tedious.
Is there an overview of all the apple frameworks coming with iOS / Maccode SDK? Or a more convenient way to determine them?
running (I can not find the official manpage) The -L option should give you all dependencies:
$ otool -l /path/to/ABC.framework/Versions/Current/ ABC
Comments
Post a Comment