Swift 3 - 在文本上方创建具有可缩放图像的按钮的最合适方式

问题描述 投票:0回答:1

在Android中,我能够通过创建一个带有2个孩子的LinearLayout来完成这个自定义按钮 - 一个ImageView和一个TextView,并且只是控制布局属性(并添加onClick等来重新创建按钮功能)。使用权重,我可以让图像比例填充按钮,同时允许文本的适当比例。

例如:

<LinearLayout
    android:id="@+id/my_button"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:background="@drawable/button_background"
    android:clickable="true"
    android:focusable="true"
    android:onClick="onClickFunction"
    android:orientation="vertical" >

<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="5"
    android:layout_marginTop="-8dp"
    android:src="@mipmap/icon_test" />

<TextView
    android:id="@+id/my_button_text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="Button Text"
    android:textSize="14sp"
    android:textAllCaps="true"
    android:textStyle="bold"
    android:textColor="@color/text_color"
    android:textAlignment="center" />
</LinearLayout>

生产:

Button example


在Swift 3中最合适的方法是什么?我已经阅读过使用插图来控制定位(甚至在图像上设置负“左”插图以将其定位在文本上方),但是必须手动管理图像尺寸。我也已经意识到将图像设置为背景会使其缩放,但我不希望文本与图像重叠。我的思维过程是,可能存在类似于我上面的Android示例的“解决方法”,但我怀疑解决方案是否类似。

此外,我非常依赖于IB(我的应用程序不是很复杂,因此很容易管理),所以到目前为止我正在使用它作为我的按钮:

import UIKit

@IBDesignable
class RoundButton: UIButton {

@IBInspectable var cornerRadius: CGFloat = 0{
    didSet{
    self.layer.cornerRadius = cornerRadius
    }
}

@IBInspectable var borderWidth: CGFloat = 0{
    didSet{
        self.layer.borderWidth = borderWidth
    }
}

@IBInspectable var borderColor: UIColor = UIColor.clear{
    didSet{
        self.layer.borderColor = borderColor.cgColor
    }
}
}

如果不是要求太多,我希望能够建立起来。

swift button
1个回答
0
投票

以下是如何实现这一目标的示例:

let btnSort   = UIButton(type: .system)
    btnSort.frame =  CGRect(x: 2, y: 74, width: 140, height: 140)
    btnSort.tintColor = UIColor.white
    btnSort.setImage(UIImage(named:"lamp"), for: .normal)
    btnSort.imageEdgeInsets = UIEdgeInsets(top: 6,left: 20,bottom: 30,right: 20)
    btnSort.titleEdgeInsets = UIEdgeInsets(top: 100,left: -250,bottom: 0,right: 0)
    btnSort.setTitle("BUTTON TEXT", for: .normal)
    btnSort.layer.borderWidth = 1.0
    btnSort.backgroundColor = UIColor.red
    btnSort.layer.borderColor = UIColor.white.cgColor
    self.view.addSubview(btnSort)

结果将是:

enter image description here

这是original帖子。我根据你的要求改变了EdgeInsets

© www.soinside.com 2019 - 2024. All rights reserved.