• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

Objectc反射

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

Object c也有和java相同的方法获取对象的属性列表方法,也就时反射了。

http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ObjCRuntimeRef/Reference/reference.html

 

下面这段代码演示了如何获取类的属性相关信息

#import <objc/runtime.h>

#import <Foundation/Foundation.h>

unsigned int outCount, i;

objc_property_t
*properties = class_copyPropertyList([UITouch class], &outCount);

for(i = 0; i < outCount; i++) {

    objc_property_t property
= properties[i];

    fprintf
(stdout, "%s %s\n", property_getName(property), property_getAttributes(property));

}

free
(properties);



参考文档

http://stackoverflow.com/questions/754824/get-an-object-attributes-list-in-objective-c

反射在NSCoding里如何试用

NSCoding里如果要实现其协议的话,要定义很多Key,如果属性比较多的话,就比较繁琐。
但是如果用反射的话,就很容易了。
 
- (void)encodeWithCoder:(NSCoder*)coder
{
    Class clazz 
= [self class];
    u_int count;
    
    objc_property_t
* properties = class_copyPropertyList(clazz, &count);
    NSMutableArray
* propertyArray = [NSMutableArray arrayWithCapacity:count];
    
for (int i = 0; i < count ; i++)
    {
        
const char* propertyName = property_getName(properties[i]);
        [propertyArray addObject:[NSString  stringWithCString:propertyName encoding:NSUTF8StringEncoding]];
    }
    free(properties);
    
    
    
for (NSString *name in propertyArray)
    {
        id value 
= [self valueForKey:name];
        [coder encodeObject:value forKey:name];
    }
}

- (id)initWithCoder:(NSCoder*)decoder
{
    
if (self = [super init])
    {
        
if (decoder == nil)
        {
            
return self;
        }
        
        Class clazz 
= [self class];
        u_int count;
        
        objc_property_t
* properties = class_copyPropertyList(clazz, &count);
        NSMutableArray
* propertyArray = [NSMutableArray arrayWithCapacity:count];
        
for (int i = 0; i < count ; i++)
        {
            
const char* propertyName = property_getName(properties[i]);
            [propertyArray addObject:[NSString  stringWithCString:propertyName encoding:NSUTF8StringEncoding]];
        }
        free(properties);
        
        
        
for (NSString *name in propertyArray)
        {
            id value 
= [decoder decodeObjectForKey:name];   
            [self setValue:value forKey:name];
        }
    }
    
return self;
}

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#多线程的简单例子发布时间:2022-07-13
下一篇:
C#XamarinForAndroid自动升级项目实战发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap