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.

Ok I am trying to change the scrollView page back and forth by using a unbutton? Now the code I am using works perfect in the simulator but as soon as I go to the device it works once then every now and then? Any clues why this would be happening?

- (IBAction)changeScrollPage:(id)sender {

if (pageControlUsed)
{
    return;
}

CGFloat pageWidth = _scrollView.frame.size.width;
int page = floor((_scrollView.contentOffset.x - pageWidth / 2) / pageWidth) + 1;
_pageControl.currentPage = page;

if ( sender == _rightBTN) {
    NSLog(@"right");

    page += 1;

    [_scrollView scrollRectToVisible:CGRectMake(page*_scrollView.frame.size.width, 0, self.view.frame.size.width, self.view.frame.size.height) animated:YES];

} else if ( sender == _leftBTN) {
    NSLog(@"left");
    page -= 1;
    [_scrollView scrollRectToVisible:CGRectMake(page*_scrollView.frame.size.width, 0, self.view.frame.size.width, self.view.frame.size.height) animated:YES];
}

}

share|improve this question
1  
Why does this have -1 points? – chipperyman573 Sep 15 '12 at 18:45
@chipperyman573 Hover with the cursor above the arrow down symbol close to the question and read. (but it was not me - I am just the messenger ;) ) – Till Sep 15 '12 at 20:36
@till I know why you award a -1 point, I'm curious why someone thought it deserved to get -1. – chipperyman573 Sep 16 '12 at 0:05
Yeah, I don't understand why someone would do that? – Mike Owens Sep 16 '12 at 19:33

1 Answer

up vote 1 down vote accepted

You can also use UIButton.tag property:

rightBTN.tag = 1;

leftBTN.tag = 2; 

if ( sender.tag == 1)

{

NSLog(@"right");


page += 1;
[_scrollView scrollRectToVisible:CGRectMake(page*_scrollView.frame.size.width,0,self.view.frame.size.width,self.view.frame.size.height) animated:YES];

}
else if ( sender.tag == 2)

{

NSLog(@"left");

page -= 1;

[_scrollView scrollRectToVisible:CGRectMake(page*_scrollView.frame.size.width0,self.view.frame.size.width, self.view.frame.size.height) animated:YES];

}
share|improve this answer

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.