I just realized that in ios 4.0, usage in this fashion is not recommended and animations using block based methods is recommended..
I tried looking for any sort of example which would give me a hint to get the zooming effect I need using the block based methods but I have not been able to find any...
It would be great if anyone could help me out in this...
Thank you for the quick reply..
I kind of figured out how to use animation using block based methods.. however, I am unable to figure out where I can add the "Zoom" effect similar to the one I used.
I usually used to add this following line to get a zooming effect
Code:
[UIView beginAnimations:@"Zoom" context:NULL];
however in the animate using blocks I am not able to find out where to add this effect..
Quote:
Originally Posted by smithdale87
This thread has an example of how to use the blocks.
Thank you for the link..
The problem is the way they are creating the animation is not recommended in Ios 4.0 and it is said that that type of coding will be depreciated soon...
The recommended way is to use animation with block based methods similar to the link that smithdale87 posted but I would like to know how to add the zooming effect...
would have additional effect on my animation in addition to the zooming effect.. whatever value I give for the options: does not seem to affect my animations..
so what happens here is that the table view rotates while the popContents view zooms to position.. I understand that is what will happen since I had given
Code:
transitionWithView:self.view
however, how will I be able to add this effect to the popContents view ( the view which zooms to position)... is it possible?
I tried