如何从 UITableViewCell 的路径获取图像?

发布于 2024-08-29 23:44:35 字数 501 浏览 4 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飞烟轻若梦 2024-09-05 23:44:35

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

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

If you have the path then you can use the "imageWithContentsOfFile:" method of UIImage:

UIImage *img = [UIImage imageWithContentsOfFile:path];
cell.imageView.image = img;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文