I have 2 views in my UIViewController. I initialized these views in my viewDidLoad like this:
_view1 = [[UIView alloc]initWithFrame:CGRectMake(0,0,200,150)];
[_view1 setBackgroundColor:[UIColor whiteColor]];
_view2 = [[UIView alloc]initWithFrame:CGRectMake(0,0,100,50)];
[_view2 setBackgroundColor:[UIColor blueColor]];
As you can see, I set the origins of the views to 0. The reason for this is because I want to place them at the middle of the UIViewController's view. So I overwritten the function -viewWillLayoutSubviews and inserted this code:
[_view1 setFrame:CGRectMake((self.view.bounds.size.width/2)-100, (self.view.bounds.size.height/2)-75, 200, 150)];
[_view2 setFrame:CGRectMake((self.view.bounds.size.width/2)-50, (self.view.bounds.size.height/2)-25, 100, 50)];
Then on -viewDidAppear I added them as subviews and begin animating them:
- (void)viewDidAppear:(BOOL)animated
{
[self.view addSubview:_view1];
[self.view addSubview:_view2];
[UIView transitionWithView:_view1 duration:2.5f options:UIViewAnimationOptionCurveLinear
animations:^(void){
[_view1 setFrame:CGRectMake(100,200,200,150)];
}completion:^(BOOL complete)
{
if (complete == YES)
{
[self performSelector:@selector(animateViewTwo) withObject:nil afterDelay:1.0f];
}
}
}
-(void)animateViewTwo
{
[UIView transitionWithView:_view2 duration:1.5f options:UIViewAnimationOptionCurveLinear
animations:^(void){
[_view2 setFrame:CGRectMake(300,500,100,50)];
}completion:nil
}
The problem here is that the views are not animating at all. They are perfectly aligned at the center of the self.view, yet animation never happens. I inserted a log just to see the origins of the views. Surprisingly, the log file shows that the origins of both views are set to 0, yet, as I said, they are placed at the center of the view. Can anyone tell me what is happening here?
transitionWithView:duration:options:animationsis intended for container views, i.e. to animate a transition within the container. You probably want to useanimateWithDuration:animations:or something similar. – Matthias Feb 20 at 12:40animateWithDuration:options:animations:completionwas the first method I tried. It didn't work, so I tried usingtransitionWithView:duration:options:animationsinstead. However, it is still not working. – Anna Fortuna Feb 21 at 0:59