I have two ViewControllers: A and B. A is a delegate of B. I am presenting B from A and when I dismiss it, I am trying to move the views of A. I have methods set up in the delegate to listen to when B is dismissed to try to move the views. This is what I am using now when B is dismissed, but it doesn't work. How can I get this to work?
[self dismissViewControllerAnimated:YES completion:^{
NSLog(@"view dismissed");
[self moveViews:self];
}];
- (IBAction)moveViews:(id)sender
{
[UIView animateWithDuration:0.5
animations:^{
self.view.center = CGPointMake(160, 250);
//self.tableView.center = CGPointMake(160, -100);
self.addView.center = CGPointMake(160, 240);
}
completion:^(BOOL finished){}];
}