我正在使用此方法向下滚动 UIscrollView:
CGPoint bottomOffset = CGPointMake(0, self.ScrollForComments.contentSize.height - self.ScrollForComments.bounds.size.height);
[self.ScrollForComments setContentOffset:bottomOffset animated:YES];
重点是,如果 UIsecollView 中的内容大于滚动视图的实际大小,则一切正常,否则,如果我的内容较少,则此方法会隐藏滚动视图中的所有内容。我怎样才能阻止这个?