使用故事板在 xcode 4.2 中设计滚动视图

Designing inside a scrollview in xcode 4.2 with storyboards(使用故事板在 xcode 4.2 中设计滚动视图)
本文介绍了使用故事板在 xcode 4.2 中设计滚动视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个垂直滚动的 uiscrollview - 想象一下标签栏应用程序的关于此应用程序"页面,它会运行一点并且需要滚动视图.它只包含一些图像、一个视频和一些文本(只有视频已被编码 - 其余部分已放置在 GUI 中).在情节提要(界面生成器?)Xcode 4.2中,一切都按应有的方式设置并且工作正常,但是视图仅与您在屏幕上看到的一样大,是否无法在情节提要中手动排列项目最初在屏幕外 - 您需要向上滚动到?到目前为止,我发现的唯一方法是在可见视图上设计它们,然后使用箭头键向下导航.

I have a vertically scrolling uiscrollview - imagine an 'about this app' page of a tab bar app which goes on a bit and requires a scrollview. It only contains a few images, a video and some text (only the video has been coded in - the rest have been placed in the GUI). In storyboard (Interface Builder?) Xcode 4.2, everything is set up as it should be and works fine, but the view is only as large as what you see on the screen, is it not possible to manually arrange in storyboard the items that are initially offscreen - that you need to scroll up to? The only way I've found so far is to design them on the visible view then navigate them down with the arrow keys..

推荐答案

我感觉到你的痛苦.我发现的唯一方法是在尺寸检查器中手动平移滚动视图,以显示您希望在视觉上编辑的视图部分.

I feel your pain. The only way I found is to manually pan the scroll view in the size inspector to reveal the portion of the view that you wish to visually edit.

使用 UIView 来包含元素,以便它们相对于该视图定位.将视图作为子视图添加到 0,0 处的滚动视图.

Use a UIView to contain elements so they are positioned relatively to this view. Add the view as a subview to the scrollview at 0,0.

  1. 平移:使用 Y 坐标说 -200,然后编辑内容.
  2. 若要在隐藏部分放置更多内容,请再次平移以显示新的不动产
  3. 完成后,恢复 ScrollView 的高度和 X、Y 位置的值.

确保滚动视图框架矩形小于包含的视图.

Make sure the scroll view frame rectangle is smaller than the contained view.

这篇关于使用故事板在 xcode 4.2 中设计滚动视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

UIButtons at the bottom of UIScrollView not working(UIScrollView 底部的 UIButtons 不起作用)
scrollViewWillEndDragging:withVelocity:targetContentOffset: not working on the edges of a UISCrollView(scrollViewWillEndDragging:withVelocity:targetContentOffset: 不在 UISCrollView 的边缘工作)
ImageView Scaling when scrolling down(向下滚动时 ImageView 缩放)
Bounds automatically changes on UIScrollView with content insets(UIScrollView 上的边界自动更改,带有内容插图)
iOS5 UITapRecognizer for UIScrollView interfering with buttons. How to fix?(用于 UIScrollView 的 iOS5 UITapRecognizer 干扰按钮.怎么修?)
Handling scroll views with (custom, interactive) view controller presentation and dismissal(使用(自定义、交互式)视图控制器呈现和解除处理滚动视图)