It is possible to animate the alpha with a duration like so:
[UIView animateWithDuration:0.5 animations:^{
[self.navController setNeedsStatusBarAppearanceUpdate];
}];
But would it be possible through CoreAnimation and UIKit to control the alpha with display link or gestures as a driver instead? I'm talking about brief moments while doing a gesture driver transition from one controller to another.
Sometimes a plain animateWithDuration just isn't what I want.