LoginSignup
8

More than 5 years have passed since last update.

tableView endUpdatesの終了タイミングを取る

Last updated at Posted at 2014-03-12

もしやと思ってやったらとれた。
良いやり方あれば是非に。

[CATransaction begin];
[CATransaction setCompletionBlock:^{
    NSLog(@"finish!!!");
}];
[tableView beginUpdates];
//code code code
[tableView endUpdates];
[CATransaction commit];

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
8