Git Product home page Git Product logo

ikyerialization's People

Contributors

ikingsly avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

ikyerialization's Issues

个人觉得存取数据的时候去拼接SEL过于麻烦,可以改用KVO

  • (void)encodeWithCoder:(NSCoder *)enCoder{
    // 取得所有成员变量名
    NSArray *properNames = [[self class] propertyOfSelf];

    for (NSString propertyName in properNames) {
    /

    // 创建指向get方法
    SEL getSel = NSSelectorFromString(propertyName);
    // 对每一个属性实现归档
    [enCoder encodeObject:[self performSelector:getSel] forKey:propertyName];
    */

    id object = [self valueForKey:propertyName];
    [enCoder encodeObject:object forKey:propertyName];
    

    }
    }

// 解档

  • (id)initWithCoder:(NSCoder *)aDecoder{
    // 取得所有成员变量名
    NSArray *properNames = [[self class] propertyOfSelf];

    for (NSString propertyName in properNames) {
    /

    // 创建指向属性的set方法
    // 1.获取属性名的第一个字符,变为大写字母
    NSString *firstCharater = [propertyName substringToIndex:1].uppercaseString;
    // 2.替换掉属性名的第一个字符为大写字符,并拼接出set方法的方法名
    NSString *setPropertyName = [NSString stringWithFormat:@"set%@%@:",firstCharater,[propertyName substringFromIndex:1]];
    SEL setSel = NSSelectorFromString(setPropertyName);
    [self performSelector:setSel withObject:[aDecoder decodeObjectForKey:propertyName]];
    */

    id object = [aDecoder decodeObjectForKey:propertyName];
    [self setValue:object forKey:propertyName];
    

    }
    return self;
    }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.