[UIView animateWithDuration:1.0
animations:^{
someView.alpha = 0;
otherView.alpha = 1;
}
completion:^(BOOL finished) {
[someView removeFromSuperview];
}];
The carat “^” character defines a block. For example, ^{ … } is a block. More specifically, it is a blo...