I've come accross the wait_fences
error message several times.
I could not find any official documentation about itI would like to know in what circumstances this error message occurs and what exactly it means.
I've come accross the wait_fences
error message several times.
I could not find any official documentation about itI would like to know in what circumstances this error message occurs and what exactly it means.
You should do your animations only when you have your view appeared. You should not try to manipulate the view before it actually appears. That means you should override viewDidAppear
and not viewWillAppear
.