I am trying to do custom animations between view controllers and in the case below I am doing a mimicking of UINavigationController's popViewController. However, it seems to lag a lot on iPhones and especially iPads and Time Profiler confirms it saying that all of the lag comes from the addSubview line.
Anyway, I connect nlView via Interface Builder and I use the code below:
[self.view.superview addSubview:nlView.view];
[nlView.view setFrame:CGRectMake(-kWidth, 20, kWidth, kHeight-20)];
[UIView animateWithDuration:2
animations:^{
[nlView.view setFrame:CGRectMake(0, 20, kWidth, kHeight-20)];
[self.view setFrame:CGRectMake(kWidth, 20, kWidth, kHeight-20)];
}
completion:^(BOOL finished){
[self.view removeFromSuperview];
}];
So, how could I minimize this lag to nothing at all? There are no leaks or anything like that but how could I just change my logic so that there is no lag when changing views?
Thanks!
setFrame:onnlView.viewbefore adding it as subview. This may help because in this case thedrawRec:method of nlView will be called only once – Zeus Alexander Jun 20 '12 at 4:45kHeight-20before using it inanimateWithDuration:like this:float dH = kHeight - 20then use it in[UIView animateWithDuration:2 animations:^{[nlView.view setFrame:CGRectMake(0, 20, kWidth, dH)];...– Zeus Alexander Jun 20 '12 at 5:38[nlView.view.layer setPosition: newPosition]...of course you need to add QuartzCore to your project and import QuartzCore/QuartzCore.h – Zeus Alexander Jun 21 '12 at 4:37