0
我想弄清楚如何滾動到狀態欄被觸摸時UIScrollView的底部。我熟悉UIScrollView中的@property(nonatomic)BOOL scrollsToTop方法,但這不是我正在尋找的。UIScrollView當狀態欄被觸摸時滾動到底部
我也有這種方法,當視圖加載時自動滾動到底部。有什麼想法嗎?
-(void)scrollToBottom{
CGPoint bottomOffset = CGPointMake(0, scroller.contentSize.height - scroller.bounds.size.height);
[scroller setContentOffset:bottomOffset animated:YES];
}