Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
328 views
in Technique[技术] by (71.8m points)

iphone - Implementing pull to refresh view feature

Can we implement pull to refresh feature on a custom view controller?. My view controller is not a table view controller and I want to refresh this view on pulling the screen down. How can I implement this feature?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In short, you need to do the following:

  1. Embed your view in a UIScrollView.
  2. Set your controller as the delegate of the scroll view.
  3. Add a "Pull To Refresh" subview to the scroll view such that its frame is off the top of the screen. Something like CGRectMake(0, -30, 320, 30) for a 30pt-tall indicator view.
  4. Implement –scrollViewDidScroll: to update your "Pull to Refresh" view as the user is dragging.
  5. Implement –scrollViewDidEndDragging:willDecelerate: to check scrollView.contentOffset when the dragging ends. If it's beyond your threshold for refreshing, then do the refresh.

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...