如何将 UIToolbar 添加到 UISplitViewController 的两个视图中?

发布于 2024-10-20 07:51:15 字数 435 浏览 2 评论 0原文

然后它在垂直视图中合并了吗?以下是 IMDB 应用程序中的示例。

http://img855.imageshack.us/img855/9669/imdb1.jpg http://img39.imageshack.us/img39/5636/imdb2.jpg http://img39.imageshack.us/img39/5636/imdb2.jpg http:/ /img39.imageshack.us/img39/5636/imdb2.jpg

他们做得很完美,我想知道如何复制它。现在,我似乎无法将其添加到拆分控制器的左侧。提前致谢。

And then have it merged in vertical view? Here is an example from the IMDB app.

http://img855.imageshack.us/img855/9669/imdb1.jpg
http://img39.imageshack.us/img39/5636/imdb2.jpg http://img39.imageshack.us/img39/5636/imdb2.jpg

They did it perfectly and I would like to know how I can replicate it. Right now, I can't seem to add it to the left side of the split controller. Thanks in advance.

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

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

发布评论

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

评论(1

成熟的代价 2024-10-27 07:51:15

简短的回答,你不知道。

您拥有的是两个 UIToolbar 和一些代码,当 UISplitViewController 调用其委托的

– splitViewController:willHideViewController:withBarButtonItem:forPopoverController:

方法时,这些代码将一个的内容移动到另一个上,并将项目再次移回到委托的方法中。

– splitViewController:willShowViewController:invalidatingBarButtonItem:

方法。

例如这可能有效:

– splitViewController:willHideViewController:withBarButtonItem:forPopoverController:
{
  // …
  NSArray *leftItems = leftBar.items;
  rightBar.items = [leftItems arrayByAddingObjectsFromArray:rightBar.items];
  leftBar.hidden=YES;
  // …
}

– splitViewController:willShowViewController:invalidatingBarButtonItem:
{
  // …
  NSArray *rightItems = rightBar.items;
  NSUInteger lc = [leftBar.items count];
  rightBar.items = [rightItems subArrayWithRange:NSMakeRange(lc,[rightItems count] - lc)];
  leftBar.hidden=NO;
  // …
}

Short answer, you don't.

What you have is two UIToolbars and some code that moves the content of one onto the other when the UISplitViewController calls its delegate's

– splitViewController:willHideViewController:withBarButtonItem:forPopoverController:

method and that moves the items back again in the delegate's

– splitViewController:willShowViewController:invalidatingBarButtonItem:

method.

For example this might work:

– splitViewController:willHideViewController:withBarButtonItem:forPopoverController:
{
  // …
  NSArray *leftItems = leftBar.items;
  rightBar.items = [leftItems arrayByAddingObjectsFromArray:rightBar.items];
  leftBar.hidden=YES;
  // …
}

– splitViewController:willShowViewController:invalidatingBarButtonItem:
{
  // …
  NSArray *rightItems = rightBar.items;
  NSUInteger lc = [leftBar.items count];
  rightBar.items = [rightItems subArrayWithRange:NSMakeRange(lc,[rightItems count] - lc)];
  leftBar.hidden=NO;
  // …
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文