将 UIImageView 从相机设置为 UIImage 时出现问题 (iPhone)
内容: 我将 iPhone 相机中的图像存储到 ClassA 中定义的 UIImage *storedImage 中。
我继续设置它
UIImageView.image = storedImage
在 ClassB (ClassA 的子类)中,我有一个 UIImageView *imageView ,因为 ClassB 可以访问 ClassA 的对象,所以
。问题: 当 ClassB 的笔尖运行时,存储的图像不显示,我只是不明白为什么。
提前致谢!
Content:
I stored the image from the iPhone's camera into a UIImage *storedImage defined in ClassA.
In ClassB (subClass of ClassA) I have a UIImageView *imageView which I proceeded to set
UIImageView.image = storedImage
since ClassB has access to ClassA's objects.
Problem:
Stored image does not show when ClassB's nib runs and I just can't figure out why.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们需要更多的源代码。你初始化了UIImageView吗?
您是否尝试过使用 UIImageView 的 setImage 属性?
更基本的是,您是否将 UIImageView 视图添加到当前视图中?
We need more source code. have you initialized the UIImageView?
Have you tried using setImage property of UIImageView ?
Also more basically, have you added the UIImageView view to the current view?