LoginSignup
12
13

More than 5 years have passed since last update.

ステータスバーとかcomplitionが用意されていないメソッドでも終了のタイミングを取得

Last updated at Posted at 2013-09-13

下記はUITableViewのアニメーションの終了タイミングの取得

[CATransaction begin];

[tableView beginUpdates];

[CATransaction setCompletionBlock: ^{
    // 終了時に行いたい処理
}];

[tableView insertRowsAtIndexPaths: indexPaths
                 withRowAnimation: UITableViewRowAnimationAutomatic];

[tableView endUpdates];

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

とかもいける

12
13
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
13