我的目标是列出图书馆中的视频,并点击每个项目获取网址。
我设法从照片库中获取所有视频,然后将textLabel设置为url。但是,当我点击视频时,所有视频NS都会显示最终单元格中视频的网址。我怎样才能真正获得每个视频的网址?我无法弄清楚问题是什么。
以下是我的(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);
}
}
我的代码出了什么问题?
提前感谢您的帮助!
答案 0 :(得分:1)
将您的方法- (void)handleTap:(UITapGestureRecognizer *)sender
更改为:
- (void)handleTap:(UITapGestureRecognizer *)sender
{
if (sender.state == UIGestureRecognizerStateEnded) {
UITableViewCell* cell = (UITableViewCell*)sender.view;
NSLog(@"clicked! I can get url: [%@] here!", cell.textLabel.text);
}
}