gpt4 book ai didi

ios - 如何以编程方式更改 UINavigationBar 高度?

转载 作者:行者123 更新时间:2023-11-28 11:22:09 25 4
gpt4 key购买 nike

如何使用代码 int iOS8 swift 更改 UINavigationBar 高度?

我试过使用:

UINavigationBar.resizableSnapshotViewFromRect

UINavigationBar.drawViewHierarchyInRect

UINavigationBar.frameForAlignmentRect

这些似乎都无法实现。

最佳答案

这是给你的例子:

import UIKit

class BaseViewConroller: UIViewController {
var navBar:UINavigationBar=UINavigationBar()

override func viewDidLoad() {
super.viewDidLoad()
setNavBarToTheView()
// Do any additional setup after loading the view.
self.title="test test"
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

func setNavBarToTheView()
{
navBar.frame=CGRectMake(0, 0, 320, 50) // Here you can set you Width and Height for your navBar
navBar.backgroundColor=(UIColor .blackColor())
self.view .addSubview(navBar)
}

}

关于ios - 如何以编程方式更改 UINavigationBar 高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26857050/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com