如何在工具栏上为xcode创建自定义栏按钮项

时间:2017-07-24 16:29:53

标签: ios swift xcode

我不想使用工具栏的默认按钮。我想创造自己的。我该怎么做呢?我需要知道

  • 尺寸

  • 如何将它们导入Xcode项目。如同,我是否将它们放入资产中。

1 个答案:

答案 0 :(得分:2)

您可以使用UIButton创建自定义UIBarButtonItem。 Todo this,将您的UIButton作为UIBarButtonItem的参数传递。


这样的事情:

let customButton = UIBarButtonItem(customView: button)

看看我的例子: iOS-CustomButton