gpt4 book ai didi

ios - 如何将按钮设置到导航的最右侧 - iOS

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:13:07 26 4
gpt4 key购买 nike

我在导航栏的右侧设置了一个按钮:

我的 View Controller : enter image description here

我想为这个按钮设置一个汉堡图标、红色循环和一个标签。像这样:

enter image description here

我的代码:

    self.navigationController?.navigationBar.barTintColor = self.utilities.hexStringToUIColor(hex: "#00b8de")

var imageview2 = UIImage(named: "menulogo")

imageview2 = imageview2?.imageResize(sizeChange: CGSize(width: 25, height: 25))

btnMenu.setImage(imageview2,for:UIControlState.normal)
btnMenu.setTitle("", for: .normal)


// setup the red circle UIView
let redCircleView = UIView(frame: CGRect(x: 0, y: 0, width: 20, height: 20))
redCircleView.backgroundColor = UIColor.red
redCircleView.layer.cornerRadius = view.frame.size.width / 2

// setup the number UILabel
let label = UILabel(frame: CGRect(x: 30, y: 0, width: 20, height: 20))
label.textColor = UIColor.white
label.font = UIFont.systemFont(ofSize: 10)
label.text = "16"

// adding the label into the red circle
redCircleView.addSubview(label)

// adding the red circle into the menu button
btnMenu.addSubview(redCircleView)

使用上面的代码我遇到了三个问题:

  1. 我的汉堡图片不在导航的最右侧。
  2. 我的周期 View 不显示
  3. 我的图标是白色的,但显示为蓝色!

btnMenu 是我的导航按钮。

enter image description here

最佳答案

我已经使用这个库在导航按钮上设置角标(Badge)。

MIBadgeButton is badge button written in Swift with high UITableView/UICollectionView performance.

https://github.com/mustafaibrahim989/MIBadgeButton-Swift

关于ios - 如何将按钮设置到导航的最右侧 - iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42898344/

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