-2

UIScrollView と UIButton があります。ブロックを使用してアニメーション化していますが、UIScrollView がアニメーション化されている間、ボタンはアニメーション化されませんか? このようなボタンをアニメーション化できませんか?

どんな助けでも大歓迎です!

- (void)viewDidLoad
{

    [super viewDidLoad];

    draw1 = 0;
    scrollView.frame = CGRectMake(0, -200, 768, 200);
    [scrollView setContentSize:CGSizeMake(768, 200)];

    openMenu.frame = CGRectMake(680, 100, 55, 55);

}



- (IBAction)openMenu:(id)sender {

    if (draw1 == 0) {

        draw1 = 1;
        CGRect optionsDrawer = scrollView.frame;
        CGRect optionsButton = openMenu.frame;
        optionsDrawer.origin.y += 200;

        [UIView animateWithDuration:0.5
                         animations:^{
                             scrollView.frame = optionsDrawer;
                             openMenu.frame = optionsButton;
                         }];
    } else {

        draw1 = 0;

        CGRect optionsDrawer = scrollView.frame;
        CGRect optionsButton = openMenu.frame;
        optionsDrawer.origin.y -= 200;
        [UIView animateWithDuration:0.5
                         animations:^{
                             scrollView.frame = optionsDrawer;
                             openMenu.frame = optionsButton;
                         }];

    }

}
4

1 に答える 1

0

ああ!ボタンにも原点を追加するのを忘れていました! おっとっと!

それぞれに追加して修正しました:

optionsButton.origin.y += 200;
于 2013-09-04T16:16:41.047 に答える