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

2022-01-12 00:00:00 ios uiscrollview storyboard

我有一个垂直滚动的 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.

相关文章