0

UINavigationcontroller rootview 内にサブビューがあります。アニメーション化してフルスクリーンにサイズ変更する最良の方法は何ですか? このサブビューと [UIView animateWithDuration] メソッドに UIPinchGestureRecognizer を使用していますが、ビューのサイズは変わりません。

4

1 に答える 1

1

以下をせよ

- (IBAction) didPinch:(UIButton*)button
{
    UIView *yourView; //this is the view you want to expand

    [[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationFade];

    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:1];
    yourView.frame = [[UIApplication sharedApplication].windows.lastObject frame];
    [UIView commitAnimations];
}
于 2012-06-07T07:12:45.093 に答える