Я хочу преобразовать UIView
из портретного в альбомный режим и сделать его полноэкранным. Как я могу это сделать?Как преобразовать UIView в альбомную и полноэкранную?
CGFloat degrees = 90;
CGAffineTransform transform = CGAffineTransformMakeRotation((M_PI * degrees/180.0f));
[UIView animateWithDuration:0.3f animations:^{
transitionView.transform = transform;
// How to set the origin to make it fullscreen?
} completion:^(BOOL finished) {
}];