我只是在导航控制器中设置背景图像
首先,
[MainWindow.xib]
视图控制器设置一个控制器(自定义类)
[Acontroller.xib]
视图
- imageview(a.png)
- 滚动视图。 。 。
所以,我看到了一个背景图片(a.png)。和scrollview做了一个操作。
但。我现在设置了navi控制器。
[MainWindow.xib]
导航控制器
-view 控制器设置 A 控制器(自定义类)
[A Controller.xib]
-View
- Image 视图
- Scrollw 视图 。 。 。
现在看不到背景图片。
只有黑色背景。
我尝试将图像视图放入导航控制器中。
[MainWindow.xib]
导航控制器
-View controller set A controller(cutom class)
-image view
[A controller.xib]
视图
-scroll view
所以我可以看到背景图像。但不工作滚动视图
我想看到背景图像并做滚动视图工作。
如何??
first ,
[ MainWindow.xib ]
view controller set A controller (custom class)
[A controller.xib]
View
- imageview (a.png)
- scrollview.
.
.
So, I saw a background image(a.png). and scrollview did a operate.
but. I set navi controller now .
[MainWindow.xib]
navigation controller
-view controller set A controller (customclass)
[A Controller.xib]
-View
- Image view
- Scrollw view
.
.
.
can't see a background image now.
only black background is in.
I try put image view in navigation controller .
[MainWindow.xib]
navigation controller
-View controller set A controller(cutom class)
-image view
[A controller.xib]
view
-scroll view
So I can see a background image. but don't work scrollview
I would like see a background image and do work scrollview.
How??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在第二种情况下,您的
UIScrollView
不起作用,因为您的UIImageView
是稍后添加的。您可以尝试先添加子视图
UIImageView
,然后添加背景颜色清晰的UIScrollView
。In second case your
UIScrollView
doesn't work because yourUIImageView
was added later.You can try to add firstly as subview
UIImageView
and then addUIScrollView
with clear background color.