YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!

iOS-初级数据持久化_复杂对象的存储-自定义Student类




//
// ViewController.m
// 初级数据持久化_复杂对象的存储-自定义Student类
//
// Created by YIem on 16/3/2.
// Copyright © 2016年 YIem. All rights reserved.
//

import "ViewController.h"

import "Student.h"

@interface ViewController ()

@end

@implementation ViewController

@end



//
// Student.h
// 初级数据持久化_复杂对象的存储
//
// Created by YIem on 16/3/2.
// Copyright © 2016年 YIem. All rights reserved.
//

import <Foundation/Foundation.h>

import <UIKit/UIKit.h>

@interface Student : NSObject <NSCoding>
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *sex;
@property (nonatomic, assign) NSInteger age;
@property (nonatomic, assign) CGFloat score;
@end


//
// Student.m
// 初级数据持久化_复杂对象的存储
//
// Created by YIem on 16/3/2.
// Copyright © 2016年 YIem. All rights reserved.
//

import "Student.h"

@implementation Student

// 用与上面同名

@end

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »