UIButton with both image and text possible?(可以同时具有图像和文本的 UIButton 吗?)
问题描述
我有一个宽度为 200 高度为 270 的按钮.我想在同一个按钮上显示文本和图像.不作为该文本的背景图像.而不是这个,我想在同一个按钮上显示高度为 120 的文本和高度为 150 的图像.怎么做?
I have a button of size width 200 and height 270. I want to have text and image on the same button. Not as a background image on that text. Instead of this, I want to display the text with height 120 and image of height 150 on the same button. How to do it?
推荐答案
你可以使用这个代码,它会达到你的目的
You can use this code,it will serve your purpose
.h file code
IBOutlet UIButton *testBtn;
.m file code
[testBtn setImage: [UIImage imageNamed:@"Image name.png"] forState:UIControlStateNormal];
[testBtn setTitleEdgeInsets:UIEdgeInsetsMake(70.0, -150.0, 5.0, 5.0)];
[testBtn setTitle:@"Your text" forState:UIControlStateNormal];
根据需要调整按钮的坐标和大小.这是指导您的示例代码.
Adjust the coordinates and size of your button as your requirement.This is a sample code to guide you.
PS:在 nib 文件中取一个 UIButton>使其成为自定义按钮>将 IBOutlet 连接到 nib 文件中的自定义按钮.就是这样.
PS:Take a UIButton in the nib file>Make it a custom button>Connect the IBOutlet to your custom button in the nib file.Thats it.
这篇关于可以同时具有图像和文本的 UIButton 吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:可以同时具有图像和文本的 UIButton 吗?


基础教程推荐
- AdMob 广告未在模拟器中显示 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01