如何将汉堡图标放在 UIBarButtonItem 中?

How to put the burger icon in a UIBarButtonItem?

我想使用汉堡图标,即

基本上我不知道怎么把汉堡图标放在UIBarButtonItem里,只存在于系统项一些图标里,没有我想要的。

您需要使用 UIBarButtonItem 构造函数 init(image: UIImage?, style: UIBarButtonItemStyle, target: Any?, action: Selector?)

一个示例用法是:

self.navigationItem.leftBarButtonItem = UIBarButtonItem(image: UIImage(named: "burger_icon"), style: .plain, target: self, action: #selector(self.someMethod))

在此示例中,"burger_icon" 是项目中图像资源的名称,self.someMethod 是点击此按钮时调用的方法。

有关 UIBarButtonItem class 的更多信息,您可以查看 class 的 Apple 文档。 https://developer.apple.com/reference/uikit/uibarbuttonitem