gpt4 book ai didi

ios - 以编程方式将系统图像添加到导航栏

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

我正在尝试从 Storyboard转向以编程方式编码。我正在尝试向我的导航栏添加一个 barbuttonitem。但是,我不想使用自己的图像,我想使用默认的系统图像,例如“magnifyingglass.circle”。

enter image description here

这是我的代码:

let button = UIBarButtonItem.init(image: UIImage(contentsOfFile: "magnifyingglass.circle") , style: .plain, target: nil, action: nil)
navigationItem.leftBarButtonItem = button

但是,我的导航栏中没有添加任何内容。

最佳答案

您使用了错误的 UIImage 初始值设定项。您尝试使用的那个需要图像文件的完整路径。你想要 UIImage(systemName:)

let button = UIBarButtonItem(image: UIImage(systemName: "magnifyingglass.circle") , style: .plain, target: nil, action: nil)

关于ios - 以编程方式将系统图像添加到导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58894628/

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