使用故事板在 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 中设计滚动视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)
Resume game cocos2d(恢复游戏 cocos2d)
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)
[ios.cocos2d+box2d]how to disable auto-rotation?([ios.cocos2d+box2d]如何禁用自动旋转?)
Storing and reading files from Documents directory iOS 5(从 Documents 目录存储和读取文件 iOS 5)
How can I implement a virtual joystick for a cocos2d game outside the cocos2d environment?(如何在 cocos2d 环境之外实现 cocos2d 游戏的虚拟摇杆?)