次のコードが実行されるとすぐに「完了」をログに記録するのはなぜですか?
[UIView animateWithDuration:0.3
animations:^{
NSLog(@"Start");
}
completion:^(BOOL finished){
NSLog(@"done");
}
];