OC知识点alloc 和init
Posted mamamia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OC知识点alloc 和init相关的知识,希望对你有一定的参考价值。
alloc:执行过程
(1)alloc
(2)allocWithZone
(3)class_createInstance
(4)calloc
(5)initIsa
init:
id _objc_rootInit(id obj)
{
// In practice, it will be hard to rely on this function.
// Many classes do not properly chain -init calls.
return obj;
}
参考:https://blog.csdn.net/qqq274628593/article/details/53023492
以上是关于OC知识点alloc 和init的主要内容,如果未能解决你的问题,请参考以下文章