我的目标是列出库中的视频,并在点击每个项目时获取 url。
我设法从照片库中获取所有视频,并将 textLabel 设置为 url。但是,当我点击视频时,所有视频都会 NSLog 输出最后一个单元格中视频的 url。我怎样才能真正获得每个视频的网址?我不知道是什么问题。
这是我的(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
方法的一些关键行:
static NSString *CellIdentifer = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifer];
if (cell == nil) {
cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifer];
}
if (tableView.tag==0)
{
ALAsset *asset = [videoLibrary objectAtIndex:indexPath.row];
videoURL = [[asset defaultRepresentation] url];
UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)];
tap.numberOfTapsRequired = 1;
//here I am trying to print out the urls
NSLog(@"-------- the url is: ---------");
NSLog(@"%@", videoURL);
[cell.textLabel setText:[NSString stringWithFormat:@"%d. %@", indexPath.row+1, videoURL]];
[cell.imageView setImage:[UIImage imageWithCGImage:[asset thumbnail]]];
//where the cells get the gesturerecognizer
[cell addGestureRecognizer:tap];
}
else
{
[cell.textLabel setText:@"Show Resume"];
}
return cell;
这是我的处理方法:
- (void)handleTap:(UITapGestureRecognizer *)sender
{
[super self];
if (sender.state == UIGestureRecognizerStateEnded) {
NSLog(@"clicked! I can get url: [%@] here!", videoURL);
}
}
我的代码有什么问题?
预先感谢您的帮助!