I've got several images within my view. On rotation my images are being placed properly by means of a CGAffineTransformTranslate & Rotate.
However when I launch in PortraitUpsidedown a translation takes place which I defined wihin the method:
This translation only has to take place on a orientation change with the device. How can I make sure that this translation doesn't happen on Launch?
However when I launch in PortraitUpsidedown a translation takes place which I defined wihin the method:
Code:
-(void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
This translation only has to take place on a orientation change with the device. How can I make sure that this translation doesn't happen on Launch?