동적 매핑objective-c의 대상 방법 빈 바늘 수정
또한 NSString 형식이고 Attributes가 nil이면 @ "값을 부여하는 Attributes가 몇 개인지 모릅니다.
코드는 다음과 같습니다.
//
// GMCommonHelper.h
#import
#import
@interface GMCommonHelper : NSObject
+(void)fixNilData:(id)kClass;
@end
//
// GMCommonHelper.m
#import
#import “GMCommonHelper.h"
@implementation GMCommonHelper
+(void)fixNilData:(id)kClass
{
unsigned int propertyCount = 0;
objc_property_t *properties = class_copyPropertyList([kClass class], &propertyCount);
for (unsigned int i = 0; i < propertyCount;++i) {
objc_property_t property = properties[i];
const char * name = property_getName(property);
const char * attrs = property_getAttributes(property);
NSString * utf8Name = [NSString stringWithUTF8String:name];
NSString * utf8Attrs = [NSString stringWithUTF8String:attrs];
id propertVal = [kClass valueForKey:utf8Name];
if (!propertVal && [utf8Attrs hasPrefix:@"T@\"NSString\""]) {
[kClass setValue:@"" forKey:utf8Name];
}
}
free(properties);
}
//———————————————————————
- (void)releaseProperties { unsigned int c = 0; objc_property_t *properties = class_copyPropertyList([self class], &c); for(unsigned int i = 0; i < c; i++) { objc_property_t property = properties[i]; NSString *propertyName = [NSString stringWithUTF8String:property_getName(property)]; NSString *propertyType = [NSString stringWithUTF8String:property_getAttributes(property)]; if([propertyType hasPrefix:@"T@"]//is an object && [propertyType rangeOfString:@",R,"].location == NSNotFound//not readonly ) { [self setValue:nil forKey:propertyName]; NSLog(@"%@.%@ = %@", NSStringFromClass(cls), propertyName, [self valueForKey:propertyName]); } } free(properties);}
//———————————————————————
If you only care about classes you can use
isKindOfClass:
, but if you want to deal with scalars you are correct that you need to use property_getAttributes()
, it returns a string that encodes the type information. Below is a basic function that demonstrates what you need to do. For examples of encoding strings, look here. unsigned int outCount, i;
objc_property_t *properties = class_copyPropertyList([object class], &outCount);
for (i = 0; i < outCount; i++) {
objc_property_t property = properties[i];
char *property_name = property_getName(property);
char *property_type = property_getAttributes(property);
switch(property_type[1]) {
case 'f' : //float
break;
case 's' : //short
break;
case '@' : //ObjC object
//Handle different clases in here
break;
}
}
Obvviously you will need to add all the types and classes you need to handle to this, it uses the normal ObjC @encode type.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.