Currently I'm able to make a view fade out all at once, but I'm wondering if there's a simple way to make a view fade from left to right?
[UIView animateWithDuration:0.3 animations:^{
_view.alpha = 1;
} completion: ^(BOOL finished) {
_view.hidde = YES;
}];