0

我正在尝试制作一个UIScrollView比 iPhone 的屏幕更大(更宽)的各种 UI 元素。

我希望能够将这些元素放在 aUIView中,然后将其加载UIViewUIScrollView. 这样,我可以在 Interface Builder 中清楚地看到我在用那个大视图做什么。

在 Storyboard 处于活动状态的情况下,我该怎么做?我正在尝试做类似于 #2 示例的事情,但使用情节提要:

http://agilewarrior.wordpress.com/2012/05/18/uiscrollview-examples/

4

1 回答 1

0

看看 Ray Wenderlich 的这个教程是否有帮助,它非常详细地介绍了UIScrollView

http://www.raywenderlich.com/10518/how-to-use-uiscrollview-to-scroll-and-zoom-content

如果您以编程方式进行布局,请注意以下重要注释:

You might ask why we don’t do all of the above in viewDidLoad, and you’d be right to ask. The reason you can’t is that the view size isn’t definitely known until viewWillAppear:, and since you use the size of scrollView when calculating the minimum zoom, things might go wrong if we do it in viewDidLoad.

祝你好运!

于 2012-12-18T21:01:55.930 回答