I have the code below wired up to a UIButton action... If I create the image view programmatically like below... myImageView does not animate on to the screen (it appears instantly)
UIIImageView *myImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"btn_image.png"]];
[self.view addSubview:myImageView];
[myImageView setHidden:YES];
[UIView transitionWithView:myImageView duration:2 options: UIViewAnimationOptionTransitionFlipFromLeft animations:^{
[myImageView setHidden:NO];
} completion:nil];
However, if I first create "myImageView" in Interface Builder and set it's hidden property to true and then wire it up with an outlet the same code works as I want
[UIView transitionWithView:myImageView duration:2 options: UIViewAnimationOptionTransitionFlipFromLeft animations:^{
[myImageView setHidden:NO];
} completion:nil];
So... is there something additional that I need to do when creating programatically in order to get this to work? Thanks!