Как исправить эту утечку? - PullRequest
0 голосов
/ 05 декабря 2011

Я получаю утечку в строке helper.offlineQueue, где я размещаю объект NSOperationQueue.Проблема в том, что я не совсем уверен, где выпустить его этим способом ...

+ (void)flushOfflineQueue
{
    // TODO - if an item fails, after all items are shared, it should present a summary view and allow them to see which items failed/succeeded

    // Check for a connection
    if (![self connected])
        return;

    // Open list
    NSMutableArray *queueList = [self getOfflineQueueList];

    // Run through each item in the quietly in the background
    // TODO - Is this the best behavior?  Instead, should the user confirm sending these again?  Maybe only if it has been X days since they were saved?
    //      - want to avoid a user being suprised by a post to Twitter if that happens long after they forgot they even shared it.
    if (queueList != nil)
    {
        SHK *helper = [self currentHelper];

        if (helper.offlineQueue == nil)
            helper.offlineQueue = [[NSOperationQueue alloc] init];      

        SHKItem *item;
        NSString *sharerId, *uid;

        for (NSDictionary *entry in queueList)
        {
            item = [SHKItem itemFromDictionary:[entry objectForKey:@"item"]];
            sharerId = [entry objectForKey:@"sharer"];
            uid = [entry objectForKey:@"uid"];

            if (item != nil && sharerId != nil)
                [helper.offlineQueue addOperation:[[[SHKOfflineSharer alloc] initWithItem:item forSharer:sharerId uid:uid] autorelease]];
        }

        // Remove offline queue - TODO: only do this if everything was successful?
        [[NSFileManager defaultManager] removeItemAtPath:[self offlineQueueListPath] error:nil];

    }
}

Спасибо!

1 Ответ

1 голос
/ 05 декабря 2011

Полагаю, вы должны просто сделать:

helper.offlineQueue = [[[NSOperationQueue alloc] init] autorelease];

Сам объект SHK должен сохранить очередь и освободит ее, когда это будет сделано.Ссылка, которую вы держите в связи с выделением ресурсов, может быть немедленно освобождена.

...