Ari
Results
1
issues of
Ari
阁下的代码动画结束逻辑的 complete 全都放在的代码的末尾执行, 我认为这样是不对的 例如: ``` [self animateIndicator:indicator Forward:forward complete:^{ [self animateTitle:title show:forward complete:^{ [self animateBackGroundView:background show:forward complete:^{ [self animateTableView:tableView show:forward complete:^{ }]; }]; }]; }]; complete(); ``` 应该改为 ```...