1

我想知道正在显示哪个故事板视图。

 [self setLeftPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"menuListViewController"]];
    [self setCenterPanel:[self.storyboard instantiateViewControllerWithIdentifier:@"NavCenterController"]];
    [self setRightPanel:[self.storyboard  instantiateViewControllerWithIdentifier:@"designView"]];

我想检查是否显示“NavCenterController”,禁用某些东西

任何意见表示赞赏。

4

1 回答 1

2

如果我理解您的要求,为了检查是否正在显示任何视图,您应该检查其window属性。对于视图控制器,您将执行以下操作:

if(self.view.window)
    // the view controller is being shown, do something
else
    // the view controller is not being shown
于 2013-05-09T14:40:45.523 回答