我在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];
但是,网址显示为零 我该怎么做 ? 谢谢。
答案 0 :(得分:1)
如果你有路径,那么你可以使用UIImage的“imageWithContentsOfFile:”方法:
UIImage *img = [UIImage imageWithContentsOfFile:path];
cell.imageView.image = img;