您知道 UISplitViewController 的开源替代品吗?
我认为 UISplitViewController
中 RootViewController
的固定宽度是一个很大的限制:在某些情况下,320px 浪费太多空间,而 DetailedView
可以有效地利用更多空间来提供更好的用户体验。 (“某些情况”的一个很好的例子是 Living Social iPad 应用程序)
到目前为止,我发现 MGSplitViewController。您是否知道任何其他扩展 UISplitViewController
功能的开源解决方案?
我知道使用替代方案有点反对“HIG”,但您是否听说过任何使用替代解决方案的应用程序被拒绝?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
cUISplitViewController 是一个很好的。
cUISplitViewController is a Good one.
这是另一个: APSplitViewController
另一个:IntelligentSplitViewController (我认为危险)
并且仅供参考,Apple 的 HIG 并不以任何方式阻止使用替代解决方案。如果替代解决方案违反了 HIG 或其他标准准则,例如使用私有 API 等,那么您将面临问题。
ps 我正在寻找一个类似于 UISplitViewController 但使用 UITabBar 的解决方案。 UISplitViewController、MGSplitViewController 都提供了出色的控件,但它们都不能与 UITabBar 一起使用。 IntelligenceSplitViewController 曾经是/现在是完美的候选者,但它访问私有成员:^(。
Here's another: APSplitViewController
And another: IntelligentSplitViewController (Dangerous in my opinion)
And FYI, using alternate solutions are not discouraged in any way by Apple's HIG. If the alternate solution is violating the HIG or other standard guidelines e.g. use of private APIs etc, then you'll face problems.
p.s. I'm looking for a solution that works like UISplitViewController, but with UITabBar. UISplitViewController, MGSplitViewController both provide excellent controls but they both don't work with UITabBar. IntelligentSplitViewController was/is the perfect candidate, but it accesses private members :^(.