This code:
[UIView animateWithDuration:0.25f animations:^() {
self.view.alpha = 1.0f;
}];
is generating this compile time error:
Incompatible block pointer types initializing 'void (^)()', expected 'void (^)(void)'
What gives -- this has worked previously (and in fact compiles in other project just fine -- (I just checked). Is there a compiler/project setting that I've overlooked?
Base SDK is 4.2, deployment target is 4.2