Making a UIButton a % of the screen size(使 UIButton 占屏幕大小的百分比)
问题描述
我注意到某些按钮尺寸在 iPhone 5 模拟器上看起来很棒,但在 iPhone 6 模拟器上看起来不那么好,这是因为我放置在 UIButtons 上的高度或约束最终会留下很多空白空间我的应用屏幕底部.
I noticed certain button sizes look great on one the iPhone 5 simulator but do not look as good on the iPhone 6 simulator and this is because the heights or constraints that I place on the UIButtons end up leaving a lot of blank space down the bottom of my App Screen.
无论我在什么设备上模拟,我都希望有一个屏幕大小为 40% 的按钮.
I would like to have a button that is 40% of the screen size regardless of what device I am simulating on.
关于如何使按钮的大小保持在屏幕大小的 40% 而与设备无关的任何想法?
Any ideas on how to make the size of the button stay 40% of the screen size regardless of the device?
推荐答案
- Ctrl 从按钮拖到 superview 并选择 Equal Widths
Open Size Inspector 编辑 Equal Widths 约束并将乘数设置为 0.4.你会看到这样的东西:
- Ctrl drag from button to superview and select Equal Widths
Open Size Inspector edit Equal Widths constraint and set multiplier to 0.4. And you will see something like this:
添加缺失的约束并更新帧.
Add missing constraints and update frames.
这篇关于使 UIButton 占屏幕大小的百分比的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使 UIButton 占屏幕大小的百分比


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