[UIView animateWithDuration:animated ? 0.25 : 0.0 animations:^{
_contentView.frame = contentFrame;
[_contentView layoutIfNeeded];
_bannerView.frame = bannerFrame;
}];
I was curious if anyone could explain to me what the ? and the : do. I don't understand what is happening between the ? and the block. What does the ? 0.25 : 0.0 do exactly?