Reputation: 1172
I have an old iOS project that evolved over time in which were added many librairies. Some of them are not longer used today. My question is, how can I check in the iOS project which library is used or not ?
Upvotes: 3
Views: 1526
Reputation: 340
I don't think there is a way to do that. But what you can do is try removing the path of the suspected frameworks(If they all are at same path, I'd suggest you to place them separately)from the Library Search Paths
and look for errors(if any).
Hope this helps.
Upvotes: 2