0

助けてください、私はメモリリークの問題に本当に苦労しています。これが私のコードです

+ (void) getInitialDataToDisplay:(NSString *)dbPath {

    AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
    [appDelegate.itemArray removeAllObjects];  //0.8%
    if (sqlite3_open([dbPath UTF8String], &dataBase) == SQLITE_OK) //18.9%
    {
        NSString *sqlStr = @"select * from ItemTable order by Status_id asc, ReleaseDate desc";
        const char *sql = [sqlStr UTF8String];
        sqlite3_stmt *selectstmt;
        if(sqlite3_prepare_v2(dataBase, sql, -1, &selectstmt, NULL) == SQLITE_OK) { //25%
            while(sqlite3_step(selectstmt) == SQLITE_ROW) { //46.3
                NSInteger primaryKey = sqlite3_column_int(selectstmt, 0);
                DataBaseClass *itemObj = [[DataBaseClass alloc] initWithPrimaryKey:primaryKey];  // 2.6%

                itemObj.itemID = sqlite3_column_int(selectstmt, 0);
                itemObj.itemName = ((char *)sqlite3_column_text(selectstmt,1)) ? [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 1)] : nil;
                itemObj.availableIcon = ((char *)sqlite3_column_text(selectstmt,2)) ? [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 2)] : nil;
                itemObj.notAvialableIcon = ((char *)sqlite3_column_text(selectstmt,3)) ? [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt,3)] : nil;
                itemObj.itemReleaseDate = ((char *)sqlite3_column_text(selectstmt, 4)) ? [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 4)] : nil;
                itemObj.itemStatus = ((char *)sqlite3_column_text(selectstmt,5)) ? [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 5)] : nil;
                itemObj.itemModDate = ((char *)sqlite3_column_text(selectstmt,6)) ? [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 6)] : nil;
                itemObj.status_id = sqlite3_column_int(selectstmt, 7);
                itemObj.availableLocalIconPath = ((char *)sqlite3_column_text(selectstmt,8)) ? [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 8)] : nil;
                itemObj.notAvialableLocalIconPath = ((char *)sqlite3_column_text(selectstmt,9)) ? [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 9)] : nil;

                [appDelegate.itemArray addObject:itemObj];
            }
        }
        sqlite3_finalize(selectstmt);
    }
    else
        sqlite3_close(dataBase); //Even though the open call failed, close the database connection to release all the memory.
}

このコードのいくつかの行でメモリリークが発生しています。これを修正する方法がわかりません。アプリでARCを使用しています。そして、ゾンビ対応モードのXCodeでInstrumentsツールを使用してこれを追跡しました。また、一部の回線で発生したリークの割合についても説明しました。コードを確認してください。

4

1 に答える 1

0

成功すると、sqlite3_finalize が呼び出されますが、データベースを閉じることはありません。この方法でも開くので、ここでも閉じる必要があります。最後の「else」を削除して、何が起こるか見てみましょう。

于 2012-08-23T16:33:38.187 に答える