iOS翻转tableview和UIView

发布于 2024-11-10 15:05:35 字数 71 浏览 0 评论 0 原文

所以我想做的是,我想翻转一个 tableview 并在其下显示一个普通的 UIView,反之亦然。我怎样才能实现这个目标?谢谢!

So what I want to do is, I want to flip a tableview and reveal a normal UIView under it, and vise versa. How can I achieve this? Thanks!

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

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

发布评论

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

评论(2

眼泪都笑了 2024-11-17 15:05:35

如果您想使用相同的 UIViewController 控制 UITableView 和背面的 UIView (听起来这可能是您的情况,因为您的 tableview 没有填满整个屏幕),您可以简单地使用以下命令在两个视图之间进行视图转换transitionFromView:toView:duration:options:completion:

fromView 是您的表视图,它应该已经是视图层次结构的一部分。 toView 是要显示在 tableview 背面的 UIView。在调用transitionFromView之前,应该将其与视图层次结构(无超级视图)分离。

If you want to control the UITableView and the UIView on the back with the same UIViewController (sounds like this might be your case given that your tableview doesn't fill the entire screen), you can simply do a view transition between the two views using transitionFromView:toView:duration:options:completion: in UIView.

The fromView is your tableview, which should already be part of the view hierarchy. The toView is your UIView to be displayed on the back of the tableview. It should be detached from the view hierarchy (no superview) before calling transitionFromView.

他不在意 2024-11-17 15:05:35

我建议从默认的 Utility View 应用程序开始,然后将 UITableViewController 添加到主视图。

如果你已经有一个项目,那么为后面创建一个新的 UIViewController 并以模态方式呈现它。对于过渡,请将背面视图的 modalPresentationStyle 设置为 UIModalTransitionStyleFlipHorizo​​ntal

I'd recommend starting with the default Utility View application and then adding a UITableViewController to the main view.

If you already have a project, then create a new UIViewController for the back and present it modally. For the transition, set the modalPresentationStyle of your backside view to UIModalTransitionStyleFlipHorizontal.

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