如何在条形按钮项目上添加标签?

How to add Label on Bar Button Item?

我有 UIBarButtonItem 是使用界面生成器拍摄的。

其出处如下:

{
    IBOutlet UIBarButtonItem *itemNext, *itemPrevious, *itemSubmit;
}

所以在我的故事板中它看起来像下图。

现在,我的问题是如何在 rightBarButtonItem 项之前添加 UILabel

注意 : UIBarButtonItem 不在 navigationController 上,它设置在屏幕底部,如图所示。

我无法将 UILabel 拖放到 UIBarButtonItem 上任何人都可以建议我该怎么做?

UILabel 只能作为子视图添加到 UIToolbarUINavigationBar

您可以添加一个UIBarItem。在 UIBarItem 上使用 setTitleTextAttributes:forState: 以获得类似于 UILabel 的属性字符串属性。