playerken

博客园 首页 新随笔 联系 订阅 管理

Thus, we arrive at the rules that all stylish Objective-C programmers follow when writing initializers:
• If a class has several initializers, only one should do the real work. That method is known as the
designated initializer. All other initializers should call, either directly or indirectly, the designated
initializer.
• The designated initializer will call the superclass’s designated initializer before initializing its
instance variables.
• If the designated initializer of your class has a different name than the designated initializer of
its superclass, you must override the superclass’s designated initializer so that it calls the new
designated initializer.
• If you have several initializers, clearly document which is the designated initializer in the header.

posted on 2014-11-27 18:16  playerken  阅读(162)  评论(0编辑  收藏  举报