148

我需要一个UIButton带有图像和文字的。图片应该在顶部,文字在图片下方,两者都应该是可点击的。

4

12 回答 12

328

我看到非常复杂的答案,所有这些都使用代码。但是,如果您使用的是 Interface Builder,则有一种非常简单的方法可以做到这一点:

  1. 选择按钮并设置标题和图像。请注意,如果您设置背景而不是图像,则如果图像小于按钮,则图像将被调整大小。IB基本图片和标题
  2. 通过更改边缘和插图来设置这两个项目的位置。您甚至可以在“控制”部分控制两者的对齐方式。

IB仓位设置 IB 控制组

您甚至可以通过代码使用相同的方法,而无需像其他建议的解决方案那样在内部创建 UILabels 和 UIImages。始终保持简单!

编辑:附上一个小例子,其中包含正确的插图(标题、图像和背景)设置了 3 个内容 按钮预览

于 2012-08-07T13:45:51.620 回答
69

我认为您正在为您的问题寻找此解决方案

UIButton *_button = [UIButton buttonWithType:UIButtonTypeCustom];
[_button setFrame:CGRectMake(0.f, 0.f, 128.f, 128.f)]; // SET the values for your wishes
[_button setCenter:CGPointMake(128.f, 128.f)]; // SET the values for your wishes
[_button setClipsToBounds:false];
[_button setBackgroundImage:[UIImage imageNamed:@"jquery-mobile-icon.png"] forState:UIControlStateNormal]; // SET the image name for your wishes
[_button setTitle:@"Button" forState:UIControlStateNormal];
[_button.titleLabel setFont:[UIFont systemFontOfSize:24.f]];
[_button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal]; // SET the colour for your wishes
[_button setTitleColor:[UIColor redColor] forState:UIControlStateHighlighted]; // SET the colour for your wishes
[_button setTitleEdgeInsets:UIEdgeInsetsMake(0.f, 0.f, -110.f, 0.f)]; // SET the values for your wishes
[_button addTarget:self action:@selector(buttonTouchedUpInside:) forControlEvents:UIControlEventTouchUpInside]; // you can ADD the action to the button as well like

...按钮的其余自定义现在是您的职责,并且不要忘记将按钮添加到您的视图中。

更新 #1更新 #2

或者,如果您不需要动态按钮,您可以将按钮添加到Interface Builder中的视图中,您也可以在那里设置相同的值。它几乎相同,但在一张简单的图片中也是这个版本。

您还可以在界面生成器中看到屏幕截图中的最终结果。

在此处输入图像描述

于 2012-08-03T09:17:31.353 回答
40

Xcode-9Xcode-10 Apple 现在对 Edge Inset 做了一些更改,您可以在 size-inspector 下进行更改。

请按照以下步骤操作:

Step-1: 输入文本并选择要显示的图像:

在此处输入图像描述

步骤2: 根据您的要求选择按钮控件,如下图所示:

在此处输入图像描述

第 3 步: 现在转到尺寸检查员并根据您的要求增加价值:

在此处输入图像描述

于 2017-09-07T15:50:48.010 回答
15

快速版本:

var button = UIButton()

newGameButton.setTitle("Новая игра", for: .normal)
newGameButton.setImage(UIImage(named: "energi"), for: .normal)
newGameButton.backgroundColor = .blue
newGameButton.imageEdgeInsets.left = -50

在此处输入图像描述

于 2020-07-20T07:09:33.383 回答
13

就我而言,我想添加UIImage到右侧和UILabel左侧。也许我可以通过编写代码来实现这一点(就像上面提到的那样),但我不喜欢编写代码并storyboard尽可能多地使用它来完成它。所以这是怎么做到的:

首先,在标签框中写下一些内容,然后选择要显示的图像:

在此处输入图像描述

这将创建一个如下所示的按钮:

在此处输入图像描述

接下来,查找Semantic并选择Force Right-to-Left(如果您不指定任何内容,则它将在左侧显示图像并在右侧显示标签,如上图):

在此处输入图像描述

最后,您会看到UIImage左右两侧UILabel

在此处输入图像描述

要在标签和图像之间添加空格,请转到尺寸检查器并根据您的要求更改这些值:

在此处输入图像描述

就是这样!

于 2020-11-17T04:44:30.760 回答
8
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.imageView.image = [UIImage imageNamed:@"your image name here"];
button.titleLabel.text = @"your text here";

但以下代码将在上方显示标签并在背景中显示图像

UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.background.image = [UIImage imageNamed:@"your image name here"];
button.titleLabel.text = @"your text here";

无需在同一控件中使用标签和按钮,因为 UIButton 具有 UILabel 和 UIimageview 属性。

于 2012-07-30T08:10:34.367 回答
5

使用此代码:

UIButton *sampleButton = [UIButton buttonWithType:UIButtonTypeCustom];
[sampleButton setFrame:CGRectMake(0, 10, 200, 52)];
[sampleButton setTitle:@"Button Title" forState:UIControlStateNormal];
[sampleButton setFont:[UIFont boldSystemFontOfSize:20]];
[sampleButton setBackgroundImage:[[UIImage imageNamed:@"redButton.png"] 
stretchableImageWithLeftCapWidth:10.0 topCapHeight:0.0] forState:UIControlStateNormal];
[sampleButton addTarget:self action:@selector(buttonPressed)
forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:sampleButton]
于 2012-08-06T10:02:42.010 回答
4

使用此代码:

UIButton *button=[UIButton buttonWithType:UIButtonTypeRoundedRect];
    button.imageView.frame=CGRectMake(0.0f, 0.0f, 50.0f, 44.0f);///You can replace it with your own dimensions.
    UILabel *label=[[UILabel alloc] initWithFrame:CGRectMake(0.0f, 35.0f, 50.0f, 44.0f)];///You can replace it with your own dimensions.
    [button addSubview:label];
于 2012-07-30T07:45:58.523 回答
4

制作UIImageViewand UILabel,并将图像和文本设置为这两者......然后在 imageView 和 Label 上放置一个自定义按钮......

UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"search.png"]];
    imageView.frame = CGRectMake(x, y, imageView.frame.size.width, imageView.frame.size.height);
    [self.view addSubview:imageView];

UILabel *yourLabel = [[UILabel alloc] initWithFrame:CGRectMake(x, y,a,b)];
yourLabel.text = @"raj";
[self.view addSubview:yourLabel];

UIButton * yourBtn=[UIButton buttonWithType:UIButtonTypeCustom];
[yourBtn setFrame:CGRectMake(x, y,c,d)];
[yourBtn addTarget:self action:@selector(@"Your Action") forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:yourBtn];  
于 2012-07-30T07:55:55.810 回答
4

我遇到了同样的问题,我通过创建一个新的子类UIButton并覆盖layoutSubviews:下面的方法来解决它:

-(void)layoutSubviews {
    [super layoutSubviews];

    // Center image
    CGPoint center = self.imageView.center;
    center.x = self.frame.size.width/2;
    center.y = self.imageView.frame.size.height/2;
    self.imageView.center = center;

    //Center text
    CGRect newFrame = [self titleLabel].frame;
    newFrame.origin.x = 0;
    newFrame.origin.y = self.imageView.frame.size.height + 5;
    newFrame.size.width = self.frame.size.width;

    self.titleLabel.frame = newFrame;
    self.titleLabel.textAlignment = UITextAlignmentCenter;

}

我认为 Angel García Olloqui 的答案是另一个很好的解决方案,如果您使用界面构建器手动放置所有这些,但我会保留我的解决方案,因为我不必修改每个按钮的内容插图。

于 2012-08-09T11:32:34.113 回答
3

您应该为图像创建自定义图像视图,为文本创建自定义标签,然后将其作为子视图添加到按钮中。就是这样。

UIButton *yourButton = [UIButton buttonWithType:UIButtonTypeCustom];
yourButton.backgroundColor = [UIColor greenColor];
yourButton.frame = CGRectMake(140, 40, 175, 30);     
[yourButton addTarget:self action:@selector(yourButtonSelected:) forControlEvents:UIControlEventTouchUpInside]; 
[self.view addSubview:yourButton];

UIImageView *imageView1 = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, yourButton.frame.size.width, yourButton.frame.size.height/2)];
imageView1.image =[UIImage imageNamed:@"images.jpg"];
[yourButton addSubview:imageView1];

UILabel *label=[[UILabel alloc] initWithFrame:CGRectMake(0, yourButton.frame.size.height/2, yourButton.frame.size.width, yourButton.frame.size.height/2)];
label.backgroundColor = [UIColor greenColor];
label.textAlignment= UITextAlignmentCenter;
label.text = @"ButtonTitle";
[yourButton addSubview:label];

用于测试目的,使用yourButtonSelected:方法

-(void)yourButtonSelected:(id)sender{
    NSLog(@"Your Button Selected");

}

我想这会对你有所帮助。

于 2012-08-03T11:18:47.827 回答
3

这真的很简单,只需将图像添加到按钮的背景,并为 uicontrolstatenormal 的按钮的标题标签提供文本。就是这样。

[btn setBackgroundImage:[UIImage imageNamed:@"img.png"] forState:UIControlStateNormal];
[btn setContentVerticalAlignment:UIControlContentVerticalAlignmentBottom];
[btn setTitle:@"Click Me" forState:UIControlStateNormal];
于 2012-08-07T11:44:49.550 回答