gpt4 book ai didi

ios - 设置按钮图像和标题不会显示标题

转载 作者:行者123 更新时间:2023-11-29 05:52:47 26 4
gpt4 key购买 nike

我正在尝试设置一个图像和标题垂直对齐的按钮,以便标题位于图像下方。谷歌搜索说按钮不显示标题的原因是图像边缘将标题推开。但是当我设置边缘时我仍然看不到标题。

我的按钮以编程方式设置如下:

private let dislikeButton = UIButton()

dislikeButton.contentMode = .scaleAspectFit
dislikeButton.setTitle(String.Localized.Button.dislike, for: .normal)
dislikeButton.setTitleColor(.white, for: .normal)
dislikeButton.setImage(UIImage.leftPaw, for: .normal)
dislikeButton.imageEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 50, right: 150)
dislikeButton.titleEdgeInsets = UIEdgeInsets(top: 50, left: 150, bottom: 0, right: 0)

按钮高度设置为 100,宽度设置为屏幕宽度的一半。

Button looks like this atm

有人能看到我错过了什么吗?

最佳答案

设置为自定义按钮

let dislikeButton = UIButton(type : .custom)
dislikeButton.translatesAutoresizingMaskIntoConstraints = false

关于ios - 设置按钮图像和标题不会显示标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55523794/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com