search

Home  >  Q&A  >  body text

Objective-c - The objects returned by self and [self class] in the +load method are the same

cls and selfcls point to the same address (RuntimeViewController class object).

According to the class structure of oc, shouldn’t [self class] point to the metaclass of RuntimeViewController?

某草草某草草2836 days ago708

reply all(2)I'll reply

  • PHPz

    PHPz2017-05-02 09:28:54

    Look at this and you will understand
    http://xiongzenghuidegithub.github.io/blog/2016/05/17/runtime-part7-object-getclass-yu-object-class-de-qu-bie/

    reply
    0
  • phpcn_u1582

    phpcn_u15822017-05-02 09:28:54

    
    
        //实例对象调用class时返回isa指向的objc_object
        -class
        {
            return (id)isa; 
        }
        
        //类对象调用class时返回类对象自己
        +class 
        {
            return self;
        }
        
        
        //取自Object.h Object.m

    reply
    0
  • Cancelreply