如何将路径中的图像传输到UITAbleViewCell?

时间:2010-04-23 10:48:29

标签: cocoa-touch iphone-sdk-3.0 uitableview uiimageview uiimage

我在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   

如果path1有路径。我使用以下内容来获取path1的最后一部分,snook.jpg。

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

但是,网址显示为零 我该怎么做 ? 谢谢。

1 个答案:

答案 0 :(得分:1)

如果你有路径,那么你可以使用UIImage的“imageWithContentsOfFile:”方法:

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