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 MapKit is a property of its centerCoordinate type of CLLocationCoordinate2D Is. And the CLLocationCoordinate2D core location structure. depends on the MapKit framework CoreLocation structure.

(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

Popular posts from this blog

java - ImportError: No module named py4j.java_gateway -

python - Receiving "KeyError" after decoding json result from url -

.net - Creating a new Queue Manager and Queue in Websphere MQ (using C#) -