UIImageView 变为黑色并使所有其他图像变为黑色

发布于 2024-11-18 08:59:06 字数 162 浏览 1 评论 0原文

我将最近拍摄的图像添加到我的表格视图中。

当我按下表格视图的任何行并导航到另一个视图并返回到我的视图时,图像将转换为半黑,当我再次重复该过程时,则整个图像转换为黑色,并且桌面视图的其他一些图像也变成黑色。

我将图像存储到文档目录中。

认为我在做什么愚蠢的事情吗?

I added recently snapped images to my table view ..

And when i press any row of the tableview and navigate to another view and come back to my view then the image is converted to half black and when i repeat the process again then the whole image converted to black and some other images of tableview also goes black.

I am storing the images to document directory.

Is there anything stupid think which i am doing ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

单调的奢华 2024-11-25 08:59:06

在viewWillAppear中,

- (void) viewWillAppear:(BOOL)animated
{
   [yourTableViewName reloadData];
}

如果效果不好,最好使用延迟图像加载功能。

In viewWillAppear, do this

- (void) viewWillAppear:(BOOL)animated
{
   [yourTableViewName reloadData];
}

if not worked well, its better to use Lazy Image Loading feature..

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