0

我使用启用了水平滑动的 UIScrollView。

滚动视图的标题是Instructions for Using this App

在此之下,我instructions每“页”有一条指令。

当用户水平滚动时,会显示新的指令。但是,在此水平滚动过程中,第二页中的“使用此应用程序的说明”似乎也移动了。

Instructions for Using this App     <--- I do not want this to appear to slide

1. Instruction number 1. XYZ...
   more text more text more text
   more text more text more text    <--- I want only this to slide

如何做到这一点?

4

1 回答 1

1

您可以将单独的 UIView(在您的情况下可能是 UILabel)放在 UIScrollView 之上,因此您的 UI 层次结构将类似于:

UIView (screen)
   UILabel (header)
   UIScrollView (scrolled content)
于 2012-12-20T16:31:28.503 回答