Invoked whenever a class or category is added to the Objective-C runtime; implement this method to perform class-specific behavior upon loading.「Apple developer」
当类(Class)或者类别(Category)加入Runtime中时(被引用的时候)会调用+load ();##
1.当父类和子类都实现load()时,父类的load()方法要优先于子类执行
2.当子类未实现load方法时,不会调用父类load方法
3.类中的load方法执行顺序要优先于类别(Category)
4.当有多个类别(Category)都实现了load方法,这几个load方法都会执行,但执行顺序不确定(其执行顺序与类别在Compile Sources中出现的顺序一致)
5.当然当有多个不同的类的时候,每个类load 执行顺序与其在Compile Sources出现的顺序一致