2014-01-20 54 views

回答

0

設置內容的滾動視圖的委託方法scrollViewWillEndDragging:withVelocity:targetContentOffset:

- (void)scrollViewWillEndDragging:(UIScrollView *)scrollView withVelocity:(CGPoint)velocity targetContentOffset:(inout CGPoint *)targetContentOffset; 
{ 
    scrollView.contentOffset = //.. content offset of where you want it to stop, use the current offset if you want it to stay where it is. 
} 

你的問題是模糊的,不給我多去提供一個更好的答案偏移,希望這是幫助。

0

像dragRefresh一樣的效果?如果是這樣,你應該在scrollView中設置你的scrollView contentInset,並拖動委託方法。

-1
[scrollView setContentOffset:scrollView.contentOffset animated:NO]; 

注:您必須使用該功能的動畫版本 - 而不是沒有動畫標誌的版本。