如何使用YouTube API解决UITableView中的慢速滚动问题

时间:2011-04-18 06:24:06

标签: xcode performance api scroll youtube

我正在使用谷歌YouTube API,我正在使用此处的代码http://pastebin.com/vmV2c0HT

减慢速度的代码就是这里的代码 cell.imageView.image = [UIImage imageWithData:data];

当我删除该代码时,它会顺利滚动。关于如何从谷歌加载图像但仍能顺利滚动的任何想法?我已经阅读了一些关于以不同方式加载图像的答案,但我仍然无法弄清楚如何使用我正在使用的代码来完成这项工作。

任何帮助将不胜感激。

贝娄是完整的代码。

   #import "RootViewController.h"

@interface RootViewController (PrivateMethods)
- (GDataServiceGoogleYouTube *)youTubeService;
@end


@implementation RootViewController

@synthesize feed;

- (void)viewDidLoad {
    NSLog(@"loading");

    GDataServiceGoogleYouTube *service = [self youTubeService];

    NSString *uploadsID = kGDataYouTubeUserFeedIDUploads;
    NSURL *feedURL = [GDataServiceGoogleYouTube youTubeURLForUserID:@"BmcCarmen"
                                                         userFeedID:uploadsID];



    [service fetchFeedWithURL:feedURL
                     delegate:self
            didFinishSelector:@selector(request:finishedWithFeed:error:)];

    [super viewDidLoad];    
}

- (void)request:(GDataServiceTicket *)ticket
finishedWithFeed:(GDataFeedBase *)aFeed
          error:(NSError *)error {

    self.feed = (GDataFeedYouTubeVideo *)aFeed;

    [self.tableView reloadData];


}


#pragma mark Table view methods

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}






// Customize the number of rows in the table view.
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [[feed entries] count];
}


// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    // Configure the cell.
    GDataEntryBase *entry = [[feed entries] objectAtIndex:indexPath.row];
    NSString *title = [[entry title] stringValue];
    NSArray *thumbnails = [[(GDataEntryYouTubeVideo *)entry mediaGroup] mediaThumbnails];

    cell.textLabel.text = title;

    NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:[[thumbnails objectAtIndex:0] URLString]]];
    cell.imageView.image = [UIImage imageWithData:data];

    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 100.0f;
}




- (void)dealloc {

    [super dealloc];
}


- (GDataServiceGoogleYouTube *)youTubeService {
    static GDataServiceGoogleYouTube* _service = nil;

    if (!_service) {
        _service = [[GDataServiceGoogleYouTube alloc] init];


        [_service setShouldCacheDatedData:YES];
        [_service setServiceShouldFollowNextLinks:YES];
    }

    // fetch unauthenticated
    [_service setUserCredentialsWithUsername:nil
                                    password:nil];

    return _service;
}

@end

1 个答案:

答案 0 :(得分:3)

GCD是一件很棒的事情。这是我的工作:



    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        static NSString *CellIdentifier = @"youTubeCell";
        UITableViewCell *cell = nil;

        cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) 
        {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        }

        // Configure the cell.
        GDataEntryBase *entry = [[feed entries] objectAtIndex:indexPath.row];
        NSString *title = [[entry title] stringValue];
        NSArray *thumbnails = [[(GDataEntryYouTubeVideo *)entry mediaGroup] mediaThumbnails];

        cell.textLabel.text = title;
        // Load the image with an GCD block executed in another thread
        dispatch_queue_t downloadQueue = dispatch_queue_create("image downloader", NULL);
        dispatch_async(downloadQueue, ^{
            NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:[[thumbnails objectAtIndex:0] URLString]]];
            UIImage * image = [UIImage imageWithData:data];

            dispatch_async(dispatch_get_main_queue(), ^{            
                cell.imageView.image = image;
                cell.imageView.contentMode = UIViewContentModeScaleAspectFit;
                [cell setNeedsLayout];
            });
        });
        dispatch_release(downloadQueue);

        return cell;
    }

滚动现在非常流畅。唯一的缺点是,当您快速滚动时,细胞会被重复使用,有时图像会随着新图像的进入而改变。