如何从 UITableViewCell 的路径获取图像?
我在 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];
但是,url 显示为 nil。
我该怎么办? 谢谢。
I have the following path in NSString *path1,
/Users/srikanth/Library/Application Support/iPhone Simulator/User/Applications/9E6E8B22-C946-4442-9209-75BB0E924434/Documents/snook.jpg
How can I show the image snook.jpg.
I need it to show in UITableViewCell for
cell.imageView.image
if path1 has the path. I used the following to get the last part of the path1 , snook.jpg.
NSURL *url = [NSURL URLWithString:path1];
NSString *imageString = [url path];
But, url is showing as nil.
How can I do it ?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有路径,则可以使用 UIImage:
If you have the path then you can use the "imageWithContentsOfFile:" method of UIImage: