StringByAddingPercentEscapes在数组对象上

时间:2014-02-14 19:43:01

标签: ios nsurlconnection

我正在尝试将URL中的图像加载到UICollectionView中,但注意到如果URL有任何空格或特殊字符,则无法加载。我尝试使用StringByAddingPercentEscapes对其进行编码,但由于某种原因它无法正常工作。有人可以查看下面的代码,看看我的问题可能在哪里?

-(UICollectionViewCell *) collectionView:(UICollectionView *)collectionView
cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
  CustomCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:
  @"PhotoCell" forIndexPath:indexPath];

  [cell.myImage setImageWithURL: [NSURL URLWithString:[picturePaths 
  objectAtIndex:indexPath.row]] placeholderImage:[UIImage imageNamed:
  @"placeholder.png"]];
}

0 个答案:

没有答案