Search code examples
iosobjective-cios9librariesios10

Find individual load time of Dynamic Libraries to identify which library consumes more time to load in IOS


The loading time of dynamic libraries has considerably increased causing a delay to the launch time of the app by several seconds. Though there are provision to load the libraries on need basis(lazy load), i would like to remove the most time-consuming library all together. which is the best approach to identify the load time of individual dynamic libraries.


Solution

  • I would look at DYLD_PRINT_STATISTICS as described here. See this post too.