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 吗?
基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01