IOS開發6----UIScrollView的使用及經過按鈕實現滑頁

2.使用按鈕實現滑頁spa

//左滑io

- (IBAction)prevBtnTouch:(UIButton *)sender {im

    current = current - 1;next

    CGPoint point = CGPointMake(menuScrollView.frame.size.width * current - menuScrollView.frame.size.width, 0);img

    [menuScrollView setContentOffset:point animated:YES];animate

}poi

//右滑

- (IBAction)nextBtnTouch:(UIButton *)sender {

    CGPoint point = CGPointMake(menuScrollView.frame.size.width * current, 0);

    [menuScrollView setContentOffset:point animated:YES];

    current = current + 1;

}

相關文章
相關標籤/搜索