溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Navigation bar 的注意事項(xiàng)

發(fā)布時(shí)間:2020-07-24 06:25:42 來(lái)源:網(wǎng)絡(luò) 閱讀:363 作者:胡壯壯 欄目:移動(dòng)開(kāi)發(fā)

    

Navigation bar 的注意事項(xiàng)

Bar button item 使用 button 作為 custom view,初始化 isEnabled 為 false,注意順序

需要設(shè)置 bar button item 的 custom view 為 button,但一開(kāi)始 isEnabled 要為 false。

生成一個(gè) button

let leftButton = UIButton(frame: CGRect(x: 0, y: 0, width: 80, height: 44))
leftButton.setTitleColor(UIColor.green, for: .normal)
leftButton.setTitleColor(UIColor.red, for: .disabled)
leftButton.setTitle("Enabled", for: .normal)
leftButton.setTitle("Disabled", for: .disabled)
leftButton.addTarget(self, action: #selector(leftButtonClicked(_:)), for: .touchUpInside)

如果先設(shè)置 isEnabled,后設(shè)置 bar button item

leftButton.isEnabled = falsenavigationItem.leftBarButtonItem = UIBarButtonItem(customView: leftButton)

結(jié)果 isEnabled 還是 true

Navigation bar 的注意事項(xiàng)

正確的順序

navigationItem.leftBarButtonItem = UIBarButtonItem(customView: leftButton)
leftButton.isEnabled = false // or navigationItem.leftBarButtonItem?.isEnabled = false

結(jié)果 isEnabled 是 false

Navigation bar 的注意事項(xiàng)

改變 navigation bar isTranslucent 屬性會(huì)改變 view 的坐標(biāo)

放置兩個(gè) label。其中, frameLabel 沒(méi)有添加約束(NSLayoutConstraint),constraintLabel 左、右、下都有約束,與 view 相接。

Navigation bar 的注意事項(xiàng)

設(shè)置右上角按鈕動(dòng)作

navigationItem.rightBarButtonItem = UIBarButtonItem(title: "Change", style: .plain, target: self, action: #selector(rightButtonClicked(_:)))

改變 navigation bar isTranslucent 屬性,顯示 label 的坐標(biāo)

@objc private func rightButtonClicked(_ sender: AnyObject) {
        navigationController?.navigationBar.isTranslucent = !navigationController!.navigationBar.isTranslucent
        
        updateLabelContent()
}    
private func updateLabelContent() {
    title = navigationController!.navigationBar.isTranslucent ? "Translecent" : "Opaque"
        
    let frameLabelOrigin = frameLabel.frame.origin
    frameLabel.text = "Frame label. x = \(frameLabelOrigin.x), y = \(frameLabelOrigin.y)"
        
    let constraintLabelOrigin = constraintLabel.frame.origin
    constraintLabel.text = "Constraint label. x = \(constraintLabelOrigin.x), y = \(constraintLabelOrigin.y)"
        
    print("\(title)")    print("Status bar frame:", UIApplication.shared.statusBarFrame) // (0.0, 0.0, 375.0, 20.0)
    print("Navigation bar frame:", navigationController!.navigationBar.frame) // (0.0, 20.0, 375.0, 44.0)}

通過(guò)點(diǎn)擊右上角按鈕,來(lái)查看變化。

透明時(shí)

Navigation bar 的注意事項(xiàng)

不透明時(shí)

Navigation bar 的注意事項(xiàng)

View controller 的 view 坐標(biāo)改變,Status bar 和 navigation bar 的坐標(biāo)不變

Navigation bar 的注意事項(xiàng)

Navigation bar 從不透明變透明,status bar 和 navigation bar 的坐標(biāo)都不變。整個(gè) view 下移64,高度減小64,不會(huì)超出 window。沒(méi)加約束的 frameLabel 坐標(biāo)不變,但相對(duì) window 的位置隨著 view 一起下移。添加約束的 constraintLabel 的坐標(biāo)改變,但是相對(duì) window 的位置不變。

如果需要改變 navigation bar isTranslucent 屬性,就要考慮對(duì)其他 view 會(huì)不會(huì)有影響,是否使用約束來(lái)定位。


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI