代码之家  ›  专栏  ›  技术社区  ›  srikanth rongali

如何将路径中的图像获取到UITableViewCell?

  •  0
  • srikanth rongali  · 技术社区  · 14 年前

    我在nsstring*path1中有以下路径,

    /Users/srikanth/Library/Application Support/iPhone Simulator/User/Applications/9E6E8B22-C946-4442-9209-75BB0E924434/Documents/snook.jpg  
    

    如何显示snook.jpg图像。 我需要在uiTableViewCell中显示

    cell.imageView.image   
    

    如果路径1有路径。我用下面的内容得到了路径的最后一部分snook.jpg。

    NSURL *url = [NSURL URLWithString:path1];
    NSString *imageString = [url path];
    

    但是,url显示为nil。
    我该怎么做? 谢谢您。

    1 回复  |  直到 14 年前
        1
  •  1
  •   Laurent Etiemble    14 年前

    如果有路径,则可以使用 UIImage :

    UIImage *img = [UIImage imageWithContentsOfFile:path];
    cell.imageView.image = img;