iPad:带手势控制的分割视图?
是否可以将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让你的细节控制器成为 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.