- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 UIModalPresentationStyle.custom
。
在我的 UIViewControllerTransitioningDelegate
中,为什么会调用此方法:
func presentationController(forPresented presented: UIViewController, presenting: UIViewController?, source: UIViewController) -> UIPresentationController?
但是这些函数都没有被调用:
func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning?
func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning?
func interactionControllerForPresentation(using animator: UIViewControllerAnimatedTransitioning) -> UIViewControllerInteractiveTransitioning?
func interactionControllerForDismissal(using animator: UIViewControllerAnimatedTransitioning) -> UIViewControllerInteractiveTransitioning?
最佳答案
确保在调用时将 animated
Bool 设置为 true
present(viewController, animated: true, completion: nil)
和
dismiss(animated: true, completion: nil)
关于ios - 自定义 UIModalPresentationStyle.custom : Why does presentationController(forPresented get called but not animationController(forPresented?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45495017/
我正在使用 UIModalPresentationStyle.PageSheet 来显示一些 HTML 内容。但scrollView没有出现。 let uiNavController : UINavi
在为 UIViewController 实例的方法设置断点进行调试时,我决定检查 UIModalPresentationStyle 的值。 这是我得到的: (lldb) po self.modalPr
在我的 ViewControllerA 中,我尝试通过调用显示 ViewControllerB: let VC2 = ViewControllerB() VC2.modalPresentationSt
我目前有一个 segue,它在 PresentationStyle.PageSheet 中以模态方式呈现 VC。我已经以编程方式和仅使用 Storyboard 完成了此操作。我用这两种方法得到了相同的
我想在另一个 View 上显示一个 View - PresentedView - Background View 使用 iOS 7。在我的应用程序中,我正在使用 UITabBArController
这个问题在这里已经有了答案: Pass touches through a UIViewController (1 个回答) 已关闭 4 个月前。
我想始终在所有设备和所有方向上的弹出窗口中呈现一个 View Controller 。我试图通过采用 UIPopoverPresentationControllerDelegate 并设置 sourc
我正在使用 View Controller 包含来管理一组 subview Controller ,这些 subview Controller 应该能够以自定义方式模态呈现其他 View Contro
我正在尝试将一些 Objective-C 代码转换为 SWIFT。 我正在将 UIViewController 作为表单加载。这是 objective-c 中的代码: generalPopup.mod
文档没有更新,但对我来说两者看起来是一样的,只是默认大小不同,也许你不能通过 preferredContentSize 更改 pageSheet 的大小? 最佳答案 在 iPhone 上,表单和页面表
我正在使用 UIModalPresentationStyle.custom。 在我的 UIViewControllerTransitioningDelegate 中,为什么会调用此方法: func p
我是一名优秀的程序员,十分优秀!