以下の内容はhttps://anton0825.hatenablog.com/entry/20120930/1349754994より取得しました。


hidden = NOとアニメーションを一緒にやるとアニメーションがキャンセルされる

hiddenはアニメーションできないプロパティなので、以下のようなコードを書くとアニメーションがキャンセルされる。

    self.view.hidden = NO;
    [UIView animateWithDuration:0.2 animations:^{
        self.view.frame = CGRectMake(0, 0, 100, 100);
    }];

アニメーションさせるにはhiddenでなくalphaを使ってviewを非表示にすればいい。

    self.view.alpha = 1;
    [UIView animateWithDuration:0.2 animations:^{
        self.view.frame = CGRectMake(0, 0, 100, 100);
    }];

参考:iphone - How to add animation while changing the hidden mode of a uiview? - Stack Overflow




以上の内容はhttps://anton0825.hatenablog.com/entry/20120930/1349754994より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14