我正在尝试为 portrait 和 landscape 创建具有多个 View 的 iOS storyboard 。我创建的所有 Storyboard constraints 和 autolayout 。
现在我的问题是肖像我需要显示如下肖像图像。这就是我通过使用 Storyboard 约束完成的。
对于横向需要显示 First View (red) 和底部栏只有其他我已通过硬编码隐藏。但是我不知道如何将红屏首先查看全高扩展到底栏顶部。
注意:这是通用应用程序。
- (void) orientationChangedNSNotification *)note
{
UIDevice * device = note.object;
switch(device.orientation)
{
case UIDeviceOrientationPortrait:
/* start special animation */
NSLog(@"ortrait");
self.namelist_tableview.hidden = NO;// ORANGE VIEW
break;
case UIDeviceOrientationLandscapeRight:
/* start special animation */
NSLog(@"Landscape");
self.namelist_tableview.hidden = YES;// ORANGE VIEW
break;
case UIDeviceOrientationLandscapeLeft:
/* start special animation */
NSLog(@"Landscape");
self.namelist_tableview.hidden = YES;// ORANGE VIEW
break;
default:
break;
};
}
Best Answer-推荐答案 strong>
很简单,在interfacebuilder中为纵向模式添加约束,
为横向模式添加约束。
接下来为所有约束创建一个导出。
在设备更改方向事件中执行此操作
如果您处于横向模式
+将纵向的事件约束设置为 false (constraint.active = NO)
+将横向约束的事件设置为 true (constraint.active = YES)
如果您处于纵向模式
+将横向约束的事件设置为 false (constraint.active = NO)
+将肖像的约束设置为true(constraint.active = YES)
关于ios - 如何使用 Objective C 根据设备方向更改 UIView 约束?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/34202300/
|