1

假设我有一个加载我的初始数据集的类

//  DataModel.m


#import "DataModel.h"
@implementation DataModel
@synthesize items;

-(id) init{
    self  = [super init];
    if (self)
    {
        [self loadData];
    }
    return self;
}

-(void)loadData
{
    NSString *filePath = [[NSBundle mainBundle] pathForResource:@"dataFile" ofType:@"json"];
    NSString *jsonString = [[NSString alloc] initWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:NULL];
    if (!jsonString) {
        NSLog(@"File couldn't be read!");
        return;
    }
    // json was loaded, carry on
    DLog(@"json Data loaded from file");
    NSError *error;
    NSDictionary *json = [NSJSONSerialization JSONObjectWithData:[jsonString dataUsingEncoding:NSUTF8StringEncoding] options:kNilOptions error:&error];
    if (error){
        DLog(@"ERROR with json: %@",error);
        return;
    }

    items = [json valueForKeyPath:@"items"];

}

我在我的 appDelegate 中初始化它(一次)

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

    appDataModel = [[DataModel alloc] init];
    DLog(@"init %@",appDataModel);

    return YES;
}

这个数据集即将在整个应用程序中使用和操作 - 最后它将被保存,替换原来的(“dataFile.json”)

问题: 这样做的最佳策略是什么?(将在许多视图控制器中使用此数据集...)数据集相对较小,但我宁愿将其保存在一个地方并在操作/读取它时将其保存在内存中。

Q2 - 我真的应该在 appDelegate 中初始化它(一次)吗?

4

1 回答 1

1

您可以使用单例

这是在代码的不同部分之间共享数据的一种非常强大的方式,而无需手动传递数据。

于 2013-11-07T13:28:39.370 回答