I have a set of iPhone static libraries (a *.a file) in which I only call a few of the classes from. I have used AR in the past (with linux libraries) to extrac
Code: ar -t mylib.a This will list all of the files in the archive.
Code:
Code: ar -xv mylib.a myobj.o This will extract the object give myobj.o from the library mylib.a.