我希望ScrollView从底部开始。有什么方法吗?
我已经尝试过了,但是无法回到顶部。
CGPoint bottomOffset = CGPointMake(0, [yourScrollView contentSize].height);
[yourScrollView setContentOffset:bottomOffset animated:YES];
最佳答案
我认为您必须使用
[self.catScroll scrollRectToVisible:CGRectMake(fr.frame.origin.x,0 , self.catScroll.frame.size.width, self.catScroll.frame.size.height) animated:NO];
其中
catScroll
是scrollView或要使用
setContentOffset:
,请将scrollView
的委托方法scrollViewDidEndDecelerating:
中的此属性更改为新的contentoffset我认为这一定会对您有所帮助。
快乐编码:)
关于iphone - iPhone:ScrollView强制移至底部,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11133837/