직렬 화 가능 한 사용자 정의 데이터 구 조 를 만 듭 니 다.

1335 단어
생 성 된 사용자 정의 클래스 는 NSCoding, NSCopying 두 가지 프로 토 콜 을 구현 해 야 하 며, 데이터 의 copy 기능 이 필요 하지 않 으 면 NSCopying 프로 토 콜 을 구현 하지 않 아 도 됩 니 다.
 
NScoding 프로 토 콜 은 두 가지 방법 이 필요 합 니 다.
-(void)encodeWithCoder:(NSCoder *)aCoder   키 밸 류 형식 으로 기본 데이터 형식 인 코딩
-(id)initWithCoder:(NSCoder *)aDecoder     키 밸 류 형식 으로 기본 데이터 형식 Decoding 을 데이터 모델 자 체 를 되 돌려 줍 니 다.
NScopying 프로 토 콜 의 방법 은 데이터 모델 의 copy 를 실현 하기 위 한 것 입 니 다.
-(id)copyWithZone:(NSZone *)zone     
예제 코드:
#define kNameKey @"name"
#define kAgeKey @"age"
#define kIdKey @"id"

#pragma mark-NSCoding
-(void)encodeWithCoder:(NSCoder *)aCoder{
    [aCoder encodeObject:m_name forKey:kNameKey];
    [aCoder encodeObject:m_age forKey:kAgeKey];
    [aCoder encodeInteger:m_id forKey:kIdKey];
}

-(id)initWithCoder:(NSCoder *)aDecoder{
    if (self == [super init]) {
        m_name =  [aDecoder decodeObjectForKey:kNameKey];
        m_age = [aDecoder decodeObjectForKey:kAgeKey];
        m_id =  [aDecoder decodeIntegerForKey:kIdKey];
    }
    
    return self;
}

#pragma mark-NSCopying
-(id)copyWithZone:(NSZone *)zone{
    MyDataClass *copy = [[[self class] allocWithZone:zone] init];
    copy.m_name = [m_name copyWithZone:zone];
    copy.m_age = [m_age copyWithZone:zone];
    copy.m_id = m_id;
    
    return copy;
}

좋은 웹페이지 즐겨찾기