亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Navigation中bar注意事項有哪些

發布時間:2021-08-18 11:15:20 來源:億速云 閱讀:152 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關Navigation中bar注意事項有哪些的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

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

需要設置 bar button item 的 custom view 為 button,但一開始 isEnabled 要為 false。

生成一個 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)

如果先設置 isEnabled,后設置 bar button item

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

結果 isEnabled 還是 true

Navigation中bar注意事項有哪些

正確的順序

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

結果 isEnabled 是 false

Navigation中bar注意事項有哪些

改變 navigation bar isTranslucent 屬性會改變 view 的坐標

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

Navigation中bar注意事項有哪些

設置右上角按鈕動作

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

改變 navigation bar isTranslucent 屬性,顯示 label 的坐標

@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)
}

通過點擊右上角按鈕,來查看變化。

透明時

Navigation中bar注意事項有哪些

不透明時

Navigation中bar注意事項有哪些

View controller 的 view 坐標改變,Status bar 和 navigation bar 的坐標不變

Navigation中bar注意事項有哪些

Navigation bar 從不透明變透明,status bar 和 navigation bar 的坐標都不變。整個 view 下移64,高度減小64,不會超出 window。沒加約束的 frameLabel 坐標不變,但相對 window 的位置隨著 view 一起下移。添加約束的 constraintLabel 的坐標改變,但是相對 window 的位置不變。

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

感謝各位的閱讀!關于“Navigation中bar注意事項有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东源县| 伊川县| 饶阳县| 勐海县| 开化县| 民乐县| 崇阳县| 刚察县| 竹山县| 内丘县| 利川市| 安徽省| 修武县| 大理市| 永靖县| 阜新| 自治县| 乐业县| 彰化市| 铜陵市| 河源市| 耒阳市| 简阳市| 胶南市| 江源县| 白朗县| 昭觉县| 连云港市| 多伦县| 新宾| 清丰县| 车险| 阳江市| 凤阳县| 玉门市| 禹城市| 久治县| 凌海市| 米脂县| 高邮市| 栾川县|