上下にスクロールするボタンに問題があります。初めて上ボタンをクリックすると正常に動作しますが、2回目はスクロールビューが上にスクロールしません。私は何を間違えましたか?コードは次のとおりです。
スクロールを作成します。
scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(38, 5, 90, 280)];
[scrollView setContentSize:CGSizeMake(90, 950)];
[scrollView setScrollEnabled: NO];
[imageView addSubview:scrollView];
[scrollView setShowsHorizontalScrollIndicator:NO];
[scrollView setShowsVerticalScrollIndicator:NO];
ボタンアクション:
-(IBAction)upButtonPress:(id)sender{
NSLog(@"UP");
[scrollView setContentOffset:CGPointMake(0, self.scrollView.frame.origin.y + 95)];
}
-(IBAction)downButtonPress:(id)sender{
NSLog(@"DOWN");
[scrollView setContentOffset:CGPointMake(0, self.scrollView.frame.origin.y - 95)];
}