- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个标签栏 iOS 应用程序。其中一个选项卡是 map ( MyMapViewController
)。 MyMapViewController
顶部有一个自定义的“搜索”栏:
一旦用户点击“搜索”栏,他就会进入搜索屏幕:
现在用户可以输入一些名称,对象列表被过滤,并允许用户找到所需的对象。这一切都很好。
唯一的问题是标签栏在搜索屏幕上可见。我需要在搜索屏幕可见时将其删除,并在用户返回 map 屏幕后立即将其返回。这就是我想要实现的目标:
现在,搜索屏幕是 MyMapViewController
的 subview Controller .它叫MySearchViewController
. “ map ”模式和“搜索”模式之间的动画转换是使用 Core Animation 执行的。 View Controller 上没有任何“push”/“pop”或“present”/“dismiss”操作。
我无法隐藏标签栏 ( UITabBar
) isHidden = true
或者通过移动它的框架,因为它留下了一个空白的矩形。
据我所知,只有两种方法可以隐藏标签栏:
hidesBottomBarWhenPushed = true
)推送到导航堆栈 MyMapViewController
,( subview Controller )
MySearchViewController
UINavigationStack
:
MyMapViewController
--(推送)-->
MySearchViewController
MyMapViewController
的一部分,它是
MySearchViewController
的一部分以及。 View 是否可能是两个的一部分
UIViewControllers
?另外,我需要它在从
MyMapViewController
插入过渡期间动画一点至
MySearchViewController
(如您所见,放大的玻璃必须转换为后箭头)。
最佳答案
UITabBarController 的问题在于它的 TabBar 是在不使用 NSLayoutConstraints 的情况下添加的(或者,更准确地说,它将自动调整大小掩码转换为约束)。因此,您可以使用两种方法:
1)按照您现在的方式使用 UITabBarController,但它需要一些技巧来隐藏它 - 基本上在 UINavigationController 内使用 UITabBarController 以便将 View 推送到它上面(但转换将是可见的,即使你将它推送没有动画(键盘将开始隐藏),或者您可以手动隐藏 TabBar 并调整 TabBar 内容 View 的框架大小,如 https://stackoverflow.com/a/6346096/7183675 所示)。
在最后一种情况下,您还必须在更改内容 View 之前记住它(或在再次取消隐藏 TabBar 之前计算它)。此外,由于它不在官方 API 中,因此您必须考虑到 UITabBarController 中 subview 的顺序可以更改并且效果看起来很奇怪(或者只是使应用程序崩溃)
2)使用带有 UITabBar 的“普通” UIViewController 及其带有约束的手动添加的项目。它也可以是自定义 UIView 子类和从 XIB 创建的几个按钮。在这里您直接创建约束,因此您可以更好地控制。
但是这个也不会没有一些技巧,因为添加到单个 UIViewController 的 UITabBar 与此 UIViewController 一起进行每次转换(假设您在每个 UIViewController 中都有 UINavigationController,这将是非常常见的)。
因此,在这种情况下,主要问题是制作单个底栏并将其传输到 View 的 viewDidAppear 上的 UIWindow,在该 View 中创建唯一的底栏 - 从 Storyboard或 xib 文件中推荐。对于下一个 View ,您将只传递对它的引用或为此将该指针保留在一个类中。您还应该记住在标签栏下创建覆盖安全区域的 View 。
它看起来像这样:
private var firstRun = false
override func viewDidLoad() {
super.viewDidLoad()
firstRun = true
}
override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated)
guard firstRun else {
bottomBar.superview?.bringSubviewToFront(bottomBar)
bottomSafeAreaView.superview?.bringSubviewToFront(bottomSafeAreaView)
return
}
guard let window = UIApplication.shared.windows.first, let bottomB = bottomBar, let bottomSafeArea = bottomSafeAreaView else { return }
if bottomB.superview != window {
bottomB.deactivateConstrainsToSuperview()
bottomSafeArea.deactivateConstrainsToSuperview()
window.addSubview(bottomSafeArea)
window.addSubview(bottomB)
let bottomLeft = NSLayoutConstraint(item: bottomSafeArea, attribute: .leading, relatedBy: .equal, toItem: window, attribute: .leading, multiplier: 1, constant: 0)
let bottomRight = NSLayoutConstraint(item: bottomSafeArea, attribute: .trailing, relatedBy: .equal, toItem: window, attribute: .trailing, multiplier: 1, constant: 0)
let bottomBottom = NSLayoutConstraint(item: bottomSafeArea, attribute: .bottom, relatedBy: .equal, toItem: window, attribute: .bottom, multiplier: 1, constant: 0)
let leftConstraint = NSLayoutConstraint(item: bottomB, attribute: .leading, relatedBy: .equal, toItem: window, attribute: .leading, multiplier: 1, constant: 0)
let rightConstraint = NSLayoutConstraint(item: bottomB, attribute: .trailing, relatedBy: .equal, toItem: window, attribute: .trailing, multiplier: 1, constant: 0)
let bottomConstraint = NSLayoutConstraint(item: bottomB, attribute: .bottom, relatedBy: .equal, toItem: bottomSafeArea, attribute: .top, multiplier: 1, constant: 0)
NSLayoutConstraint.activate([bottomLeft, bottomRight, bottomBottom, leftConstraint, rightConstraint, bottomConstraint])
}
window.layoutIfNeeded()
DispatchQueue.main.async(execute: {
bottomB.superview?.bringSubviewToFront(bottomB)
bottomSafeArea.superview?.bringSubviewToFront(bottomSafeArea)
})
firstRun = false
}
extension UIView {
func deactivateConstrainsToSuperview() {
guard let superview = self.superview else {return}
NSLayoutConstraint.deactivate(self.constraints.filter({
return ($0.firstItem === superview || $0.secondItem === superview)
}))
}
}
private func hideBottomBar() {
UIView.animate(withDuration: Constants.appAnimation.duration, animations: { [weak self] in
guard let self = self else { return }
self.bottomBar.isHidden = true
self.bottomBarHeightConstraint.constant = 0
self.bottomBar.superview?.layoutIfNeeded()
})
}
private func showBottomBar() {
UIView.animate(withDuration: Constants.appAnimation.duration, animations: { [weak self] in
guard let self = self else { return }
self.bottomBar.isHidden = false
self.bottomBarHeightConstraint.constant = Constants.appConstraintsConstants.bottomBarHeight
self.bottomBar.superview?.layoutIfNeeded()
})
}
if #available(iOS 11.0, *) {
self.bottomSafeAreaViewHeightConstraint.constant = self.view.safeAreaInsets.bottom
} else {
self.bottomSafeAreaViewHeightConstraint.constant = 0
}
关于ios - 在 View Controller 之间推送转换时保持 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59619787/
我的应用程序包含两部分:网络部分和 GUI。它的工作方式有点像浏览器 - 用户从服务器请求一些信息,服务器发回一些代表某些 View 的数据,然后 GUI 显示它。 现在我已经将网络部分实现为一项服务
给定表达式字符串exp,编写程序检查exp中“{”、“}”、“(”、“)”、“[”、“]的对和顺序是否正确。 package main import ( "fmt" stack "gi
我想要一个简单的脚本在后台保持运行。目前看起来像这样: import keyboard while True: keyboard.wait('q') keyboard.send('ct
我维护着许多 RedHat Enterprise Linux(7 台和 8 台)服务器(>100 台),其中包含不同的应用程序。为了保持理智,我当然会使用 Ansible 等工具,更重要的是,公共(p
我有一个 winforms 应用程序,它在网络服务请求期间被锁定 我已经尝试使用 doEvents 来保持应用程序解锁,但它仍然不够响应, 我怎样才能绕过这个锁定,让应用程序始终响应? 最佳答案 最好
我正在努力在我的项目中获得并保持领先的 0。以下是当前相关的代码: Dim jobNum As String jobNum = Left(r1.Cells(1, 1), 6) r2.Cells(1
我正在尝试在我的 Canvas 中定位元素相对于我的背景。 窗口被重新调整大小,保持纵横比。 背景随着窗口大小而拉伸(stretch)。 问题是一旦重新调整窗口大小,元素位置就会不正确。如果窗口的大小
一直在玩弄 Hibernate 和 PostgreSQL,试图让它按预期工作。 但是由于某种原因,当我尝试将具有@OneToMany 关系的对象与集合中的多个项目保持一致时,除了第一个项目之外,所有项
我想将某些东西提交到 github 存储库,但我(显然)没有任何权利这样做。我对那个 repo 做了一个分支,提交了我的更改并提交了一个 pull-request。 现在,问题是过了一段时间其他人已经
这是一个初学者问题,我仍在考虑“在 OOP 中”,所以如果我错过了手册中的答案或者答案很明显,我深表歉意。 假设我们有一个抽象类型, abstract type My_Abstract_type en
我们正在开展的一些项目在 jQuery 1.4.2 或更早版本中有着深厚的根基,介于缺乏最新版本的性能优势(或语法糖)、使用现已弃用的方法的耻辱以及部署一个积极维护的库的 3 年以上旧版本,升级现在迫
我看到在FMDB 2.0中,作者为线程添加了FMDatabaseQueue。例子是: // First, make your queue. FMDatabaseQueue *queue = [FMDa
我在 NSScrollView 中有一个 NSTableView。 NSTableView 的内容是通过绑定(bind)到 NSArrayController 来提供的,而 NSArrayContro
我在 TreeView 上有一个节点,我手动填充该节点并希望保持排序。通过用户交互,TreeViewItem 上的标题可能会更改,它们应该移动到列表中的适当位置。 我遍历一个 foreach,创建多个
我从主 NSWindow 打开一个 NSWindow。 DropHereWindowController *dropHereWindowController = [[DropHereWindowCon
我需要放置一个 form 3 按钮,当我单击该按钮时,将其显示为按下,其他按钮向上,当我单击另一个按钮时,它应该为“向下”,其他按钮应为“向上” 最佳答案 所有按钮的属性“Groupindex”必须设
我有一个使用 AnyEvent::MQTT 订阅消息队列的 perl 脚本。 目前我想要它做的就是在收到消息时打印出来。我对 perl 完全陌生,所以我正在使用它附带的演示代码,其中包括将 STDIN
如何在 .NET 应用程序中保持 TreeView 控件的滚动位置?例如,我有一个树形 View 控件,并经历了一个向其添加各种节点的过程,并将它们固定在底部。在此过程中,我可以滚动浏览 TreeVi
我维护了大量的 vbscripts,用于在我的网络上执行各种启动脚本,并且有一些我在几乎所有脚本中使用的函数。 除了复制和粘贴之外,有没有人对我如何创建可重用 vbscript 代码库有建议。我并不反
我有一些关于 Azure 自托管的问题。 假设用户 Alex 在物理机 M 上设置了 Windows 自托管代理。当 Alex 注销且计算机进入休眠状态时,代理将脱机。现在,当 Bob 登录同一台计算
我是一名优秀的程序员,十分优秀!