将 UIImageView 添加到 UIScrollView

发布于 2024-11-07 06:50:04 字数 447 浏览 0 评论 0原文

我在 IB 中设置了 UIScrollView。我在 viewDidLoad 方法中添加 UIImageView 但它不起作用。这是我的代码:

- (void)viewDidLoad {
    [super viewDidLoad];
    UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:imageName]];
    [scrollView addSubview:imageView];
    [scrollView setContentSize:[imageView frame].size];
    [imageView release];
}

我对 imageView 进行了 NSLog 处理,它不为空。我做错了什么?谢谢。

编辑:屏幕只是空白。那里什么也没有。

I have a UIScrollView set up in IB. I am adding in a UIImageView to it in viewDidLoad method but it's not working. Here's my code:

- (void)viewDidLoad {
    [super viewDidLoad];
    UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:imageName]];
    [scrollView addSubview:imageView];
    [scrollView setContentSize:[imageView frame].size];
    [imageView release];
}

I NSLog-ed imageView and it's not null. What am I doing wrong? Thanks.

EDIT: The screen is just blank. There's nothing there.

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

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

发布评论

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

评论(1

讽刺将军 2024-11-14 06:50:04

听起来你的 UIScrollView 没有连接。滚动视图的出口是否有效?记录scrollView以进行验证。

It sounds like your UIScrollView isn't hooked up. Is the outlet for scrollview valid? Log scrollView to verify.

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