在分割视图控制器中选择主视图选项卡时更改详细视图

发布于 2024-12-01 01:47:55 字数 166 浏览 1 评论 0 原文

我是ipad开发新手。在我的应用程序中,我创建了如下图所示的分割视图。在这种情况下,当左侧窗格中的选项卡选择发生变化时,我如何调用另一个详细视图控制器?

请帮助我..

我的分割视图屏幕

I am new to ipad development. In my application i have created splitview like the below image. In this how can i call another detailview controller when tabbar on the left pane selection changes??

Please help me..

My Splitview Screen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

菩提树下叶撕阳。 2024-12-08 01:47:55

您可以简单地替换 UISplitViewController 的 viewControllers 属性的索引 1 处的 VC。尝试类似的东西-

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
     UIViewController* myReplacementVC = nil;
      if(viewController == VC1)
           myReplacementVC = myReplacementVC1;
      else
           myReplacementVC = myReplacementVC2; 

      NSMutableArray* arr = [[NSMutableArray alloc] initWithArray:splitVC.viewControllers];
          [arr replaceObjectAtIndex:1 withObject:myReplacementVC]; //index 1 corresponds to the detail VC
          splitVC.viewControllers = arr;
          [arr release];
    }

You can simply replace the VC at index 1 of the UISplitViewController's viewControllers property. Try something like-

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
     UIViewController* myReplacementVC = nil;
      if(viewController == VC1)
           myReplacementVC = myReplacementVC1;
      else
           myReplacementVC = myReplacementVC2; 

      NSMutableArray* arr = [[NSMutableArray alloc] initWithArray:splitVC.viewControllers];
          [arr replaceObjectAtIndex:1 withObject:myReplacementVC]; //index 1 corresponds to the detail VC
          splitVC.viewControllers = arr;
          [arr release];
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文