ios - 左对齐图像并将文本放置在UIButton的中心

时间:2017-02-25 18:21:15

标签: ios swift uibutton text-alignment

我一直试图在按钮左侧对齐图像,同时在按钮的中央放置一些文字。我一直关注这个堆栈溢出帖子:Left-align image and center text on UIButton

我遵循了一个对我来说最有效的答案。以下是该答案的代码:

@IBDesignable class LeftAlignedButton: UIButton {
    override func layoutSubviews() {
        super.layoutSubviews()

        if let image = imageView?.image {

            let margin = 30 - image.size.width / 2
            let titleRec = titleRect(forContentRect: bounds)
            let titleOffset = (bounds.width - titleRec.width - image.size.width - margin) / 2


            contentHorizontalAlignment = UIControlContentHorizontalAlignment.left
            imageEdgeInsets = UIEdgeInsetsMake(0, margin, 0, 0)
            titleEdgeInsets = UIEdgeInsetsMake(0, titleOffset, 0, 0)
        }

    }
} 

即使这让我非常接近我想要的结果,但它并没有完全达到我想要的效果。

以下是我当前按钮的样子:

Image for how Buttons currently look

正如你可以在google按钮中看到的那样,即使以特定按钮为中心也不会与facebook按钮的文本居中对应。此外,图像有点太大,但我不知道如何使它们变小。

以下是我要找的结果:

Image for How I want my Buttons to look

总而言之,我的问题是如何正确地将谷歌按钮的文本居中,以便它与facebook按钮的设计相对应,以及如何使图像更小。

2 个答案:

答案 0 :(得分:2)

你也可以试试这个。适用于不同的图像宽度和不同的标题。

extension UIButton {
    func moveImageLeftTextCenter(imagePadding: CGFloat = 30.0){
        guard let imageViewWidth = self.imageView?.frame.width else{return}
        guard let titleLabelWidth = self.titleLabel?.intrinsicContentSize.width else{return}
        self.contentHorizontalAlignment = .left
        imageEdgeInsets = UIEdgeInsets(top: 0.0, left: imagePadding - imageViewWidth / 2, bottom: 0.0, right: 0.0)
        titleEdgeInsets = UIEdgeInsets(top: 0.0, left: (bounds.width - titleLabelWidth) / 2 - imageViewWidth, bottom: 0.0, right: 0.0)
    }
}

用法:myButton.moveImageLeftTextCenter()

答案 1 :(得分:0)

@Rohan问题是let margin = 30 - image.size.width / 2。您正在使用图像宽度来查找边距。图像(facebook and google)大小不同(我假设)。因此,根据您的代码,标签左边距必须随图像宽度而变化。因此,如果你想实现你必须根据你的代码保持两个图像大小相似。