0
votes
0answers
125 views

Swing and Drop ImageView Animation with gravity in iphone sdk

I am making a photography based application. in this app i want swing and drop animation based on gravity. using gestures just like the app "WeHeartPics". Here is the link of video I have tried pan ...
1
vote
1answer
271 views

Want to get animation like opening a camera shutter in iphone

i am making an application based on photography as per the requirement i have to show all progress or activity indicator in a menner to look it like opening camera shutter. For better explanation see ...
0
votes
0answers
23 views

How to flip a uiimageview inside a uitableviewcell, similiar to the history channel app?

I tried searching for an answer to this question , but have not found anything that leads me in the right direction. I have my tableview setup with the image in the cell, looking for clues on how to ...
0
votes
1answer
88 views

iOS UIImageView not animating

I'm making an app and have an IBAction that is triggered when the user hits a button. Heres the code: - (IBAction)expand:(id)sender{ UIImage *statusImage = [UIImage imageNamed:@"status.png"]; ...
1
vote
3answers
281 views

how to spin a image continously

i have an wheel image in .png format,i want to know how can i animate so that it rotates continously,i searched on stackoverflow and found certain snippets of code which helped me rotate my image but ...
1
vote
1answer
123 views

Performance of UIImageView and CoreAnimation

I'm working on very simple game. Everything is working. I've only question about performance and memory. I'm moving bird from left to right. The bird waves his wings in 3 positions. What's better ...
2
votes
2answers
1k views

CALayer Positioning After Object Has Moved

I animate my UIImageView with CAAnimation using layer property like so: [imageView.layer addAnimation:pathAnimation forKey:[NSString stringWithFormat:@"pathAnimation%@",objId]]; But at the end ...
3
votes
1answer
868 views

UIImageView is disappearing after CAKeyframeAnimation

I'm trying this code (found in an answer here on SO) in a category on UIView and am using it to peform a "pop" animation on a UIImageView nested inside of a UITableViewCell. - ...