保存自定义对象的 NSMutableArray

发布于 2024-08-30 04:31:03 字数 562 浏览 6 评论 0原文

我有一个自定义类,用作 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岛徒 2024-09-06 04:31:03

我想在应用程序关闭之前保存
我想在什么时候加载内容
应用程序已启动

我认为最简单的方法是使用 -[NSArray writeToFile:automatically:]-[NSArray initWithContentsOfFile:]

I want to save before the app closes
and I want to load the content when
the app is started

The easiest way, I think, is to use -[NSArray writeToFile: automatically:] and -[NSArray initWithContentsOfFile:]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文