UIImageView 不更新我的图像

发布于 2024-10-11 00:56:16 字数 487 浏览 1 评论 0原文

我正在尝试设置我的图像:

detailedEventViewController.thumbnail.image = [UIImage imageNamed:@"amnesia.png"];

但图像视图显示为空白。 amnesia.png 在我的资源组中。该文件存在。

我的日志结果:

2011-01-08 10:52:32.822 HD Pocket Vacations[25271:207] Image: <UIImage: 0x66203b0>
2011-01-08 10:52:32.823 HD Pocket Vacations[25271:207] dEVC: <DetailedEventViewController: 0x6628340>
2011-01-08 10:52:32.824 HD Pocket Vacations[25271:207] thumbnail: (null)

I am trying to set my image:

detailedEventViewController.thumbnail.image = [UIImage imageNamed:@"amnesia.png"];

But the imageview appears blank. amnesia.png is in my resources group. The file exists.

Results of my log:

2011-01-08 10:52:32.822 HD Pocket Vacations[25271:207] Image: <UIImage: 0x66203b0>
2011-01-08 10:52:32.823 HD Pocket Vacations[25271:207] dEVC: <DetailedEventViewController: 0x6628340>
2011-01-08 10:52:32.824 HD Pocket Vacations[25271:207] thumbnail: (null)

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

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

发布评论

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

评论(2

︶葆Ⅱㄣ 2024-10-18 00:56:16

您是否将 thumbnail 属性链接到 IB 中的 UIImageView

尝试通过将行更改为: 来获取更多信息,

UIImage *img = [UIImage imageNamed:@"amnesia.png"];
NSLog(@"Image: %@",img);
NSLog(@"dEVC: %@",detailedEventViewController);
NSLog(@"thumbnail: %@",detailedEventViewController.thumbnail);

detailedEventViewController.thumbnail.image = img;

并告诉您在调试器控制台窗口中看到的内容。

Did you link up the thumbnail property to a UIImageView in IB?

Try to get a little more information by changing the line to:

UIImage *img = [UIImage imageNamed:@"amnesia.png"];
NSLog(@"Image: %@",img);
NSLog(@"dEVC: %@",detailedEventViewController);
NSLog(@"thumbnail: %@",detailedEventViewController.thumbnail);

detailedEventViewController.thumbnail.image = img;

and tell what you see in the debugger console window.

情定在深秋 2024-10-18 00:56:16

根据您提供的日志进行操作。你什么时候尝试设置这个?如果您尝试在 init 方法中执行此操作,那么它还没有绑定到 Nib,并且为什么它是 Null。

在 viewDidLoad: 方法中执行此操作,它应该已连接。

Following on from the logs you provided. When are you attempting to set this? If you are trying to do this in your init method it won't have bound to the Nib yet and why it is Null.

Do this in the viewDidLoad: method and it should have hooked up.

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