Как работать с компонентами пользовательского интерфейса при изменении ориентации устройства для iPhone/iPad?
В моем UIView есть несколько компонентов, таких как текстовые поля, метки, таблицы, кнопки. Я хочу справиться с изменениями ориентации устройства. Как сделать так, чтобы эти компоненты автоматически размещались в нужном месте? Или мне нужно перефразировать их?
Пожалуйста помоги.
Спасибо
3 ответа
Решение
Вы можете использовать параметр Autosizing для изменения ориентации. Не нужно писать даже одну строку кода.
- (void) willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[self adjustViewsForOrientation:toInterfaceOrientation];
}
- (void) adjustViewsForOrientation:(UIInterfaceOrientation)orientation {
if (orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight) {
// set you subviews,Label button frame here for landscape mode,,
}
else if (orientation == UIInterfaceOrientationPortrait || orientation == UIInterfaceOrientationPortraitUpsideDown) {
// set you subviews,Label button frame here for portrait-mode,
}
}
// Не забудьте добавить это Delegate
метод
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
// Return YES for supported orientations
return YES;
}
Надеюсь, что это поможет вам..
Попробуй это
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
if(interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
{
// portrait Arrangement
}
else
{
// Landscape Arrangement
}
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight ||
interfaceOrientation == UIInterfaceOrientationPortrait ||
interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown);
}