iPad:带手势控制的分割视图?

发布于 2024-11-02 21:28:13 字数 79 浏览 0 评论 0原文

是否可以将 iPad 上的分割视图应用程序集成为手势控制,以便您可以左右滑动以在 RootViewController 中的表格“行”之间切换?

Is it possible to make a split view app on the iPad an integrate gesture control, so you could swipe left and right to switch between the "rows" of the table in the RootViewController?

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

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

发布评论

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

评论(1

↘人皮目录ツ 2024-11-09 21:28:13

让你的细节控制器成为 UIScrollViewController。如果用户点击 rootViewController 中的一行,则滚动到滚动视图的相应“页面”。如果用户向左或向右滑动,则滚动到上一页/下一页。如果您的数据不是图像,而是在不改变的表单内发生变化的数据,那么您不需要滚动视图,您只需要一个手势识别器来向前和向后浏览数据。

Make your detail controller a UIScrollViewController. If user taps a row in the rootViewController, scroll to the appropriate "page" of the scroll view. If the user swipes left or right, scroll to the previous/next page. If your data is not images, but rather data that changes inside a form that does not change, then you don't need a scroll view, you just need a gesture recognizer to step forward and backward through your data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文