tableView にいくつかの URL があります...「http://bla-bla-bla.com/bla...」のような URL をカットしないようにするにはどうすればよいですか?
テーブルビューでこれを確認する必要があります: "http://bla-bla-bla.com/bla-bla-bla/bla-bla-bla.png"
どうもありがとうございました!
これがコードの一部で、データを入力します。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *cellID = @"LinkID";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
}
NSData *n = [self.data objectAtIndex:indexPath.row];
[cell.imageView setImageWithURL:[[NSURL alloc]initWithString: [self.data objectAtIndex:indexPath.row]] placeholderImage:[UIImage imageNamed:@"placeholder"]];
cell.textLabel.text = [n description];
return cell;
}