摘自:http://stackoverflow.com/questions/2906147/what-does-the-all-load-linker-flag-do
IMPORTANT: For 64-bit and iPhone OS applications, there is a linker bug that prevents -ObjC from loading objects files from static libraries that contain only categories and no classes. The workaround is to use the -all_load or -force_load flags. -all_load forces the linker to load all object files from every archive it sees, even those without Objective-C code. -force_load is available in Xcode 3.2 and later. It allows finer grain control of archive loading. Each -force_load option must be followed by a path to an archive, and every object file in that archive will be loaded.
摘自:http://stackoverflow.com/questions/8179869/should-i-include-objc-and-all-load-in-other-linker-flag-to-all-my-ios-projec
There is a side effect: build phase take much time.
-ObjC allow the static library to use objective-c specific stuffs like kvc or categories.
-all_load solve a bug in gcc/llvm, where -ObjC is not correctly used.