ios - 将 subview 作为背景添加到导航栏
<p><p>我在我的应用程序中使用了一个导航 Controller ,我正在尝试将一个进度条作为我的导航栏的背景。我创建了一个 UIView 的子类来制作我的进度条,效果很好。</p>
<p>现在,当我构建导航栏项目时,我将进度条添加为导航栏的 subview ,以及 2 个按钮。这也很好用!</p>
<p>问题是,当我单击表格 View 的一行时,这会转到 ViewController ,当我单击“返回”按钮时,我的进度条现在位于导航栏按钮的顶部。 </p>
<p>这是我设置导航栏项目的代码:</p>
<pre><code> let progressBar = ScrollProgress(frame: CGRect(x: 0, y: -20, width: self.navigationController!.navigationBar.frame.width, height: self.navigationController!.navigationBar.frame.height + 20), section: nil)
progressBar.tag = 10
progressBar.pourcentage = 92
self.navigationController!.navigationBar.addSubview(progressBar)
let menuButton = UIBarButtonItem(title: "Menu", style: UIBarButtonItemStyle.Plain, target: revealViewController(), action: #selector(SWRevealViewController.revealToggle(_:)))
self.navigationItem.leftBarButtonItem = menuButton
let favorisButton = UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.Bookmarks, target: revealViewController(), action: #selector(SWRevealViewController.rightRevealToggle(_:)))
self.navigationItem.rightBarButtonItem = favorisButton
self.navigationItem.title = "Demo App"
</code></pre>
<p>您可以在这里看到它工作正常,进度条覆盖了我导航栏宽度的 92%,并且位于按钮和标题下方:</p>
<p> <a href="/image/dUCTp.png" rel="noreferrer noopener nofollow"><img src="/image/dUCTp.png" alt="enter image description here"/></a> </p>
<p>然后当我点击我的 tableview 的一行时,这会执行到另一个 ViewController 的 segue,它工作正常:</p>
<p> <a href="/image/CB6UF.png" rel="noreferrer noopener nofollow"><img src="/image/CB6UF.png" alt="enter image description here"/></a> </p>
<p>当我点击后退按钮(Retour)时,我的进度条出现在顶部...</p>
<p> <a href="/image/ff89H.png" rel="noreferrer noopener nofollow"><img src="/image/ff89H.png" alt="enter image description here"/></a> </p>
<p>我无法找出 subview 顺序发生变化的原因。我试图用 <code>self.navigationController!.navigationBar.exchangeSubviewAtIndex</code> 将我的 subview 替换为正确的索引,它可以工作,但标题在过渡结束时闪烁(但按钮不闪烁)。</p>
<p>还有其他方法可以做到这一点,还是我做错了什么?</p>
<p>任何帮助将不胜感激!</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>你不仅可以尝试添加进度条,还可以将其插入导航栏的最底部<code>insertSubview(view: UIView, at: Int)</code>。这对我有用。</p>
<p><code>self.navigationController!.navigationBar.insertSubview(progressBar, at: 0)</code></p></p>
<p style="font-size: 20px;">关于ios - 将 subview 作为背景添加到导航栏,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/37953953/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/37953953/
</a>
</p>
页:
[1]