如何将UIBarButtonItem添加到UIToolbar中,同时包含文本和图像?

时间:2011-10-05 06:26:49

标签: iphone objective-c xcode cocoa-touch ipad

如何将UIBarButtonItem添加到UIToolbar,其中包含文字和图片?看看我展示的示例图像。这正是我想要做的。

Here's the image

4 个答案:

答案 0 :(得分:6)

首先创建一个带有图像和标题的UIButton。

然后将该Button添加到BarButtonItem

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithCustomView:customButton];

答案 1 :(得分:1)

向工具栏添加自定义按钮将此属性设置为该按钮在文本按钮上添加标签

button.contentHorizontalAlignment =  UIControlContentHorizontalAlignmentLeft;

答案 2 :(得分:0)

您应该使用UIViewUILabel作为子视图创建UIImage。然后使用自定义视图创建UIBarButtonItem

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithCustomView:customView];

答案 3 :(得分:0)

一些参考链接将指导您如何使用文本和图像将UIBarButtonItem实现到UIToolbar .... 您只需根据您的要求修改代码。

  1. UIToolbar UIBarButtonItem with both image and title has very dim text

  2. add image to UIBarButtonItem for UIToolbar