我目前正在制作一个使用UIScrollView的应用程序。在scrollview上,我显示了项目的简短描述。对于一个项目,我有四到五个描述和右侧的文档类型。如滚动顶部的图像所示,需要将doc文件滚动到底部,直到特定项目描述结束。
我怎样才能实现这一目标?
答案 0 :(得分:0)
以下是基本步骤 - 您需要根据代码确定详细信息。
UIScrollViewDelegate
self.scrollView.delegate = self;
(假设您的滚动视图的IBOutlet称为scrollView
在VC中添加此代码(填写实际代码来做评论所说的):
-(void)scrollViewDidScroll:(UIScrollView *)scrollView {
// scrollView.contentOffset is the scroll position of the scroll view
// Look at that and where your label sections are
// set the AgendaLabel.center or AgendaLabel.frame appropriately
}