私は新しいiOS開発者です。助けを願っています。多くのNSManagedObjectを作成できるようにしたいと思います。1つのNSManagedObjectのフィールドのサイズは約5Mbです。こんなに大量のメモリをiPhoneのメモリに保存できませんでした。そして、それをデータベースに保存したいと思います。しかし、NSManagedObjectを保存すると、メモリ内に残ります。これは、約20個のオブジェクトを保存すると、メモリ警告が表示され、アプリケーションがクラッシュするためです。これが私のコードです
- (void)SaveItem
{
NSString *entityName = kEntityName;
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSManagedObjectContext *context = appDelegate.managedObjectContext;
NSEntityDescription *entityDesctiption = [NSEntityDescription
entityForName: entityName
inManagedObjectContext:context];
// check if town exists
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"id == %d", self.imageID];
NSFetchRequest *requestToCheckExistense = [[NSFetchRequest alloc] init];
[requestToCheckExistense setEntity:entityDesctiption];
[requestToCheckExistense setPredicate:predicate];
NSArray *objects = [context executeFetchRequest:requestToCheckExistense error:nil];
[requestToCheckExistense release];
if (objects == nil)
{
NSLog(@"there was an error");
}
NSManagedObject *object;
if ([objects count] > 0)
{
// edit item
object = [objects objectAtIndex:0];
}
else
{
// if object doesn't exist, find max id to imlement autoincrement
NSFetchRequest *request = [[NSFetchRequest alloc] init];
[request setEntity:entityDesctiption];
request.propertiesToFetch = [NSArray arrayWithObjects: @"id", nil];
NSArray *allobjects = [context executeFetchRequest:request error:nil];
[request release];
NSInteger newID = 1;
if ([allobjects count] > 0)
{
NSNumber *maxID = [allobjects valueForKeyPath:@"@max.id"];
newID = [maxID intValue] + 1;
}
// write item
object = [NSEntityDescription insertNewObjectForEntityForName:entityName inManagedObjectContext:context];
[object setValue:[NSNumber numberWithInt:newID] forKey:@"id"];
self.imageID = newID;
}
// fill NSManagedObject
// size of objNSData is about 5MB
NSMutableData *objNSData = [[DatabaseManager sharedDatabaseManager] encryptedDataFromImage:bigImage];
[object setValue:objNSData forKey:@"big"];
[context save:nil];
}
[self SaveItem]を20回呼び出そうとすると、アプリがクラッシュしてメモリ警告が表示されます。コメントしたとき
[object setValue:objNSData forKey:@"big"];
すべてが大丈夫だった。
@autoreleasepoolにコードを追加しようとしましたが、役に立ちませんでした。
データをデータベースに保存しても、iPhoneのメモリに残っていることはわかっています。このメモリからそれを解放する方法は?管理対象オブジェクトのセットを取得すると、それらはメモリにありません(100個のオブジェクトを簡単に取得でき、それぞれに5Mbフィールドがあります)