在tableview单元格中的Youtube视频

时间:2011-03-11 08:45:06

标签: objective-c uitableview youtube

我目前在自定义单元格中嵌入了YouTube视频的桌面视图。

我之所以这样做是因为从我的研究中看来,这似乎是允许视频加载而不离开我的应用程序的唯一方法。

问题是这个

缩略图需要一段时间才能加载。当我向下滚动视频列表时,它不断加载缩略图。如果我向上滚动,它会再次尝试加载视频缩略图。

有没有人对更好的方法有什么建议,或者让表格单元格保留数据而不是替换它的方法?

我的代码如下所示:

-(UITableViewCell *)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{

static NSString *MyIdentifier = @"MyIdentifier";

YouTubeCell *cell = (YouTubeCell*)[tableView dequeueReusableCellWithIdentifier:MyIdentifier];
if(cell ==nil){

    cell = [[[YouTubeCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier] autorelease];

}
NSDictionary *dic = [youTubeArr objectAtIndex:indexPath.row];
[cell updateCellData:dic];
return cell;

}

-(void)updateCellData:(NSDictionary*)dict
{
NSDictionary *tempDic = [dict objectForKey:@"video"];
self.titleLbl.text = [tempDic objectForKey:@"title"];
NSString *viewCountStr = [NSString stringWithFormat:@"%@ views -",[tempDic objectForKey:@"viewCount"]];
viewCountLbl.text = viewCountStr;
uploadedDateLbl.text = [tempDic objectForKey:@"uploaded"];

NSDictionary *videoDic = [tempDic objectForKey:@"player"];
NSString *videoStr = [NSString stringWithFormat:@"%@",[videoDic objectForKey:@"default"]]; 

NSString *embedHTML = 
@"<html><head>\
<body style=\"margin:0\">\
<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";

// videoView = [[UIWebView alloc] initWithFrame:CGRectMake(3, 5, 100, 60)]; initialzed in ///initwithstyle of cell

NSString *html = [NSString stringWithFormat:embedHTML, videoStr, videoView.frame.size.width, videoView.frame.size.height];
[videoView loadHTMLString:html baseURL:nil];

}

1 个答案:

答案 0 :(得分:1)

您应该缓存已加载的图片。

一种方法可能是创建一个可变字典,在其中使用您UITableViewCells特有的密钥存储图像。在cellForRowAtIndexPath中,您可以通过调用[dictionary objectForKey:uniquecellidentifier]来检索相应的图像。如果它返回nil,您知道图像尚未加载,您应该创建一个请求。加载完成后,您将图像存储在字典中([dictionary setObject:image forKey:uniquecellidentifier]

这应该让你有一个更具体的想法:

- (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];
    }

    NSString *cellid=[NSString stringWithFormat:@"Cell%i%i", indexPath.section, indexPath.row];
    if([dictionary objectForKey:cellid]){
        NSLog(@"Retrieving value for %@: %@", cellid, [dictionary objectForKey:cellid]);
        cell.textLabel.text=[dictionary objectForKey:cellid];
        //Show image from dictionary
    }else{
        NSLog(@"Now value set for %@.", cellid);
        [dictionary setObject:[NSString stringWithFormat:@"Testvalue%@", cellid] forKey:cellid]; //Save image in dictionary
        cell.textLabel.text=@"Loaded";
    }
    return cell;
}

在您的标头文件中创建一个名为“词典”的NSMutableDictionary并在viewDidLoad中对其进行初始化:

dictionary = [[NSMutableDictionary alloc] init];

标题文件:

NSMutableDictionary *dictionary;

这将导致以下行为: 第一次显示您的单元格,它显示“已加载”。在随后的所有外观中,它将显示其设定值。