[2014-09-25]对于Xcode6里面反射(p…

在xcode5里面的反射机制即:property_getName的方法中,不会获取到我认为是隐藏类型的属性,比如: hash superclass description debugDescription这4个属性,但是在xcode6里面,反射时,会把hash 值, superclass description debugDescription这四个属性反射出来。如果在项目中,使用到了反射机制的猿友们,升级xcode6崩溃了,可以往这边排除下。我就说下,我项目中用到的情况。

我在项目中用到了sqlite,使用的是mvc模式,所以就直接把model存入数据库,就使用到了property_getName方法,来获取model里面的属性。在xcode5里面能够获取正确的属性,但是在xcode6里面就会多出以上4个属性。于是我的解决方法就在遍历是,遇到以上4个属性就continue,代码如下:(如有不对,请大家指出)。

unsigned int outCount, i;

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

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

objc_property_t property = properties[i];

NSString *propertyName = [NSString stringWithCString:property_getName(property) encoding:NSUTF8StringEncoding];

if ([propertyName isEqualToString:@"primaryKey"] || [propertyName isEqualToString:@"rowid"]

|| [propertyName isEqualToString:@"hash"]|| [propertyName isEqualToString:@"superclass"]|| [propertyName isEqualToString:@"description"] || [propertyName isEqualToString:@"debugDescription"]) {

continue;

}

[pronames addObject:propertyName];

NSString *propertyType = [NSString stringWithCString:property_getAttributes(property) encoding:NSUTF8StringEncoding];

if ([propertyType hasPrefix:@"T@"]) {

[protypes addObject:[propertyType substringWithRange:NSMakeRange(3, [propertyType rangeOfString:@","].location - 4)]];

}

else if ([propertyType hasPrefix:@"Ti"])

{

[protypes addObject:@"int"];

}

else if ([propertyType hasPrefix:@"TF"])

{

[protypes addObject:@"float"];

}

else if([propertyType hasPrefix:@"Td"]) {

[protypes addObject:@"double"];

}

else if([propertyType hasPrefix:@"Tl"])

{

[protypes addObject:@"long"];

}

else if ([propertyType hasPrefix:@"Tc"]) {

[protypes addObject:@"char"];

}

else if([propertyType hasPrefix:@"Ts"])

{

[protypes addObject:@"short"];

}

}

free(properties);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值