iPhone 的图像问题

发布于 2024-10-06 06:02:56 字数 159 浏览 3 评论 0原文

我将图像从数组传递到 UIImageView。这些图像根据情况而变化......但我发现,当满足相应的条件时,有些图像永远不会出现......问题出在这些图像上......

当我用其他图像更改它们时,其他图像正在工作

吗? UIImageView 支持的任何特殊格式的图像

I am passing images from array to a UIImageView. These images changes according to situation....But i have found that some images never appear when the corresponding condition is satisfied...and the problem is with those images..

When i changed them with other one then other are working

Is there any special format of image that UIImageView support

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

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

发布评论

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

评论(1

江南烟雨〆相思醉 2024-10-13 06:02:56

我们需要查看代码示例,否则我们只是在胡编乱造。您在注释中提到了以下代码:

NSArray *array= [[NSArray alloc] initWithObjects:
    @"My-haircare.jpg", @"Boxer.png", @"weeping.jpg", @"great.png"];

这是错误的,您需要使用 nil 终止对象列表:

NSArray *array= [[NSArray alloc] initWithObjects:
    @"My-haircare.jpg", @"Boxer.png", @"weeping.jpg", @"great.png", nil];

这很可能是问题的根源。但正如我所说,没有代码我们只是猜测。

We need to see a code sample, otherwise we’re just making things up. You mentioned the following code in the comments:

NSArray *array= [[NSArray alloc] initWithObjects:
    @"My-haircare.jpg", @"Boxer.png", @"weeping.jpg", @"great.png"];

This is wrong, you need to terminate the object list with nil:

NSArray *array= [[NSArray alloc] initWithObjects:
    @"My-haircare.jpg", @"Boxer.png", @"weeping.jpg", @"great.png", nil];

This could very well be the source of your problem. But as I said, without code we’re just guessing.

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