0
votes
1answer
128 views

when i resize a layer of imageview, hwo can i resize the uiimageview at the same time?

this is my code : CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"transform.scale"]; [animation setFromValue:[NSNumber numberWithFloat:1.0f]]; ...
0
votes
3answers
3k views

CABasicAnimation Problem

So, I have read in the docs, that use of blocks like beginAnimation commitAnimation is discouraged from os4.0. So I have tried to get my code to work by using CABasicAnimation. I want to ...