我对 iOS 编程完全陌生。我正在开发一个应用程序,我需要一个不同的纵向视图和另一个横向视图。即使视图不同,两个视图中的按钮和其他控件也是相同的。所以我想为两个视图保持从按钮/标签到视图控制器的相同连接。因此,如果我在视图控制器中更改标签的值,它应该在视图中更改,而与我呈现的视图无关。
现在我面临的问题是我无法将两个不同的根视图添加到故事板中的项目。我试图在主视图中添加两个不同的子视图。这样我就可以创建视图,但我无法将两个视图中的按钮连接到单个连接。例如,
@property (strong, nonatomic) IBOutlet UIButton *buttonNext;
只能在一个视图中连接到下一个按钮。
为了解决这个问题,我在故事板中创建了两个不同的视图,为两者添加了相同的视图控制器。然后为每个视图创建一个segue,如下所示:
@property (strong, nonatomic) IBOutlet UIView *portraitView;
@property (strong, nonatomic) IBOutlet UIView *landscapeView;
在我的视图控制器中,我添加了:
- (void) willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration {
[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
[self adjustViewsForOrientation:toInterfaceOrientation];
}
- (void) adjustViewsForOrientation:(UIInterfaceOrientation)orientation {
//NSLog(self.view.restorationIdentifier);
if (orientation == UIInterfaceOrientationMaskLandscape || orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight)
{
if(self.landscapeView == nil)
{
self.landscapeView =[[UIView alloc] init];
}
self.view = landscapeView;
}
else if (orientation == UIInterfaceOrientationPortrait || orientation == UIInterfaceOrientationPortraitUpsideDown)
{
self.view = portraitView;
}
}
问题是第二个视图没有正确加载。最初它被加载为零。即使我在代码中初始化视图,它也不会在视图中初始化子视图/控件。在过去的三天里,我一直坚持这一点。任何帮助将非常感激。
编辑1:
我在这里添加了一个示例代码:http: //cl.ly/2z3f3E290f0R