Как загрузить изображение в фоновом режиме в UITableCell в приложении для iPhone - PullRequest
2 голосов
/ 09 июля 2010

Я разработал приложение RSS.в ячейке моей таблицы отображаются изображения, которые я извлекаю из ссылки imge в RSS-ленте и заголовке.Изображения загружаются успешно, но проблема в том, что оно вешает мое приложение.как есть способ загрузить изображение в фоновом режиме.мой текущий код:

int blogEntryIndex1 = [indexPath indexAtPosition: [indexPath length] -1];
        imgstring=[[blogEntries objectAtIndex: blogEntryIndex1] objectForKey: @"image"];
NSURL *url = [NSURL URLWithString:imgstring];
    NSData *data = [NSData dataWithContentsOfURL:url];
    UIImage *img = [[UIImage alloc] initWithData:data];
     cell.imageView.image=[img autorelease];

любая идея, пожалуйста, спасибо заранее ...

Ответы [ 4 ]

4 голосов
/ 09 июля 2010

Репост ... Вы также должны посмотреть на ленивую загрузку таблицы через образец кода Apple http://developer.apple.com/iphone/library/samplecode/LazyTableImages/Introduction/Intro.html

Обновление другой пример здесь: http://www.markj.net/iphone-asynchronous-table-image/

1 голос
/ 09 июля 2010

Ну, ребята, я сделал это, код ...

- (void) loadImage:(id)object {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

// Get the data to pass in
NSDictionary *dict = (NSDictionary *)object;

// Get the cell and the image string
NSString *imgstring = [dict objectForKey:@"imgstring"];
MyfirstCell *cell = [dict objectForKey:@"cell"];

NSURL *url = [NSURL URLWithString:imgstring];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[UIImage alloc] initWithData:data];
    cell.myimnage.image = img;
[pool release];

}

Я вызову вышеуказанный метод в моем коде ...

if(searching) {
        //cell.textLabel.text = [copyListOfItems objectAtIndex:indexPath.row];
        int blogEntryIndex = [indexPath indexAtPosition: [indexPath length] -1];
        // Tell your code to load the image for a cell in the background
        NSString *imgstring =[[blogEntries objectAtIndex: blogEntryIndex] objectForKey: @"image"];
        NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:cell, @"cell", imgstring, @"imgstring", nil];
        [self performSelectorInBackground:@selector(loadImage:) withObject:dict];
        //background code end here..

Спасибо Дину Уомбурну, который дал мне этот код ....

0 голосов
/ 13 июля 2010

Вы можете использовать этот способ:

((UIImageView *)cell.backgroundView).image = bgImage;
((UIImageView *)cell.selectedBackgroundView).image = bgImage;
0 голосов
/ 09 июля 2010

И посмотрите на этот документ также от Apple.

http://developer.apple.com/iphone/library/documentation/cocoa/Conceptual/URLLoadingSystem/URLLoadingSystem.html

Большую часть времени я использую NSURLConnection для загрузки вещей.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...