如何将 UIToolbar 添加到 UISplitViewController 的两个视图中?
然后它在垂直视图中合并了吗?以下是 IMDB 应用程序中的示例。
他们做得很完美,我想知道如何复制它。现在,我似乎无法将其添加到拆分控制器的左侧。提前致谢。
And then have it merged in vertical view? Here is an example from the IMDB app.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答,你不知道。
您拥有的是两个
UIToolbar
和一些代码,当 UISplitViewController 调用其委托的方法时,这些代码将一个的内容移动到另一个上,并将项目再次移回到委托的方法中。
方法。
例如这可能有效:
Short answer, you don't.
What you have is two
UIToolbar
s and some code that moves the content of one onto the other when theUISplitViewController
calls its delegate'smethod and that moves the items back again in the delegate's
method.
For example this might work: