Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My question is about this method:
(void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated

I have read the documentation, but i don't understand what this method is for.

thanks for your answers.

share|improve this question
you don't understand what?.. – Vladimir May 12 '11 at 12:03
if i do for example : [myScrollView setContentOfFset:(0,120)...]; i don't know wha this melan – izan May 12 '11 at 12:14

2 Answers

up vote 15 down vote accepted

As mentioned in documentation.

Scrolling to a Specific Offset

Scrolling to a specific top-left location (the contentOffset property) can be accomplished in two ways. The setContentOffset:animated: method scrolls the content to the specified content offset. If the animated parameter is YES, the scrolling will animate from the current position to the specified position at a constant rate. If the animated parameter is NO, the scrolling is immediate and no animation takes place. In both cases, the delegates scrollViewDidScroll: messages. If animation is disabled, or if you set the content offset by setting the contentOffset property directly, the delegate receives a single scrollViewDidScroll: message. If animation is enabled, then the delegate receives a series of scrollViewDidScroll: messages as the animation is in progress. When the animation is complete, the delegate receives a scrollViewDidEndScrollingAnimation: message.

i.e. In simple words if you want to scroll UIScrollView programatically by passing scrolling position values i.e. how much amount to scroll, you can use this method.

This method also calls delegate scrollViewDidScroll: i.e. delegate method of UIScrollView class through which you can maintain the amount of scrolling of UIScrollView.

share|improve this answer

UIScrollView lets you have content that is larger than what you can view on the screen. In the image below you can see a large red rectangle with a green rectangle inside.

The contentArea property of the UIScrollView defines the logical size of your view (the red rectangle). The visible area of the scroll view is represented by the green rectangle. The contentOffset is the upper left corner of the visible area. Changing contentOffset, the visible area will move around.

(void)setContentOffset:(CGPoint)contentOffset animated:(BOOL)animated

The method above will move the contentOffset (the upper left corner of the green rectangle) to a specified location, thus moving the visible area (the green rectangle).

Hope this helps.

enter image description here

share|improve this answer
Thanks for the art. An image says a thousand words. – Dheeraj V.S. Sep 30 '12 at 5:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.