-2

これらのコードを追加してコンテンツをスクロール ビューにスクロールしましたが、コンテンツの代わりにスクロール ビュー フレームが右から左にそれぞれ移動しています。私のコードはここにあります.. この画像では、スクロール ビューの両側に 2 つのボタンがあります。

-(IBAction)leftbtnclick:(id)sender
{
    NSLog(@"left clicked");
    CGRect basketTopFrame = nameContainerScrollView.frame;
    basketTopFrame.origin.x = 115;
    [UIView animateWithDuration:0.3 delay:0.0 options:UIViewAnimationOptionCurveEaseIn animations:^{ nameContainerScrollView.frame = basketTopFrame; } completion:^(BOOL finished){ }];


}

-(IBAction)rightbtnclick:(id)sender
{
    NSLog(@"right clicked");
    CGRect napkinBottomFrame = nameContainerScrollView.frame;
    napkinBottomFrame.origin.x = 0;
    [UIView animateWithDuration:0.3 delay:0.0 options: UIViewAnimationOptionCurveEaseOut animations:^{ nameContainerScrollView.frame = napkinBottomFrame; } completion:^(BOOL finished){/*done*/}];

}
4

1 に答える 1

1

scrollViewこのコード行で特定の位置/オフセットにスクロールできます

[addFeedsScroll scrollRectToVisible:CGRectMake(0, 262, addFeedsScroll.frame.size.width, addFeedsScroll.frame.size.height) animated:YES];

注:- addFeedsScroll はUIScrollView.

于 2013-10-26T06:36:50.487 に答える