码迷,mamicode.com
首页 > 移动开发 > 详细

iOS--Runtime之一--类与对象

时间:2017-06-12 13:12:28      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:else   color   code   ret   nbsp   getc   style   time   object   

一、

1.暂记录

+ (Class)class {
    return self;
}
 
- (Class)class {
    return object_getClass(self);
}

Class object_getClass(id obj)
{
    if (obj) return obj->getIsa();
    else return Nil;
}

 

iOS--Runtime之一--类与对象

标签:else   color   code   ret   nbsp   getc   style   time   object   

原文地址:http://www.cnblogs.com/howdoudo/p/6992060.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!