如何在UIScrollView中以编程方式滚动到某个位置

我有一个水平滚动的滚动视图。 我只是添加了图像,标签和一个web视图,其中有很多对象。 我想直接滚动到滚动视图中的第一个对象。 我该怎么做呢?

使用下面的代码:

scrollView.contentOffset = CGPointMake(0,0); 

要animation滚动,请执行以下操作:

 CGRect frame = CGRectMake(0, 768, 1024, 748); //wherever you want to scroll [self.scrollView scrollRectToVisible:frame animated:YES]; 

最简单的方法与animation – >

 [scrollView setContentOffset:CGPointMake(0, 0) animated:YES] 

答案的快速3版本是:

scrollView.contentOffset = CGPoint(x: 0.0, y: 0.0)