Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
9 views

iOS code crashing on commitAnimations while in main thread

I am animating a scroll view content inset for pull down to refresh. NSLog(@" in main thread? %d", [NSThread isMainThread]); // prints 1 [UIView beginAnimations:nil context:NULL]; [UIView ...
0
votes
1answer
36 views

Steady Animation?

I am making a iPhone/iPad app with a cursor and music. I am running a timer every beat and moving it like so: [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDelegate:self]; [UIView ...
0
votes
1answer
63 views

How to store animations in obj-c?

I've got 2 methods in my class and in each I've got an animation. My question is, can I store these animations in one array or something and refer to them by beginAnimation:name? If yes, how can I do ...
2
votes
1answer
299 views

How to get UIImageView real location in view while animation?

Hi all, For the animation i used: [UIView commitAnimation:@"anim" context:nil]; [UIView setAnumatioDuration:10]; imageView.center=CGPointMake(100,100); [UIView commitAnimation]; The thing is that ...
1
vote
1answer
326 views

- (void)viewWillAppear:(BOOL)animated detect custom animation

I have a button which when pressed pushes a view controller however i'm using a custom animation so pushViewController: childController animated: is set to NO. What i want to do though is detect this ...
0
votes
1answer
368 views

flip viewController only flips the first time

I am flipping over to an info view on the backside. I have it flipping, and I have a navigation bar on the other side to get me back home to the original view (which was a problem when I was trying to ...
1
vote
1answer
226 views

UITableView Navigation Bar “Flickers” on Animation

I have a UIViewController, a "switcher" that will basically just rotate a view from one to another. It all works great, except that the view that I am transitioning to is a UIViewController which ...
1
vote
2answers
788 views

Animation on the iPhone - use image sequence or rotation?

I am creating a basic animation for my iPhone app. I have a choice to make between 2 different types of animation. I can use this... NSArray *myImages = [NSArray arrayWithObjects: [UIImage ...
4
votes
2answers
3k views

UIView removeFromSuperView animation delay

I have a method which animates one of the subviews of UIWindow and then removes it from UIWindow using removeFromSuperview. But when I put removeFromSuperview after animation block, the animation ...
2
votes
2answers
3k views

BeginAnimations and CommitAnimations with NavigationController.PushViewController

I'm trying to get a basic flip animation transition working when I push a controller inside a navigation. The code below flips the view, however the view appears first (each element fades in), and ...