保存自定义对象的 NSMutableArray
我有一个自定义类,用作 NSMutableArray 的
@interface AllCourses : NSObject {
NSMutableArray *arrClasses;
}
包装器上面的数组存储另一个自定义类的对象。
@interface Course : NSObject {
NSString *className;
NSString *classGrade;
NSInteger creditHours;
}
我使用下面的方法将 Course 对象添加到我的 AllCourses
//Adds a new Course to the total Courses
-(void) addClass:(Course *)aCourse{
[arrClasses addObject:aCourse];
}
中 将 arrClasses MutableArray 保存在 AllCourses 中的最佳方法是什么,以便当我的应用程序加载时它可以保留用户已输入的保存数据并填充它?
I have a custom class that is used as a wrapper to an NSMutableArray
@interface AllCourses : NSObject {
NSMutableArray *arrClasses;
}
The array above stores Objects of another custom class.
@interface Course : NSObject {
NSString *className;
NSString *classGrade;
NSInteger creditHours;
}
I use the method below to add Course objects to my AllCourses
//Adds a new Course to the total Courses
-(void) addClass:(Course *)aCourse{
[arrClasses addObject:aCourse];
}
What's going to be the best way to save the arrClasses MutableArray in AllCourses so that when my app loads it can keep the saved data the user already entered and populate it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最简单的方法是使用
-[NSArray writeToFile:automatically:]
和-[NSArray initWithContentsOfFile:]
The easiest way, I think, is to use
-[NSArray writeToFile: automatically:]
and-[NSArray initWithContentsOfFile:]