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];
}
}