swift 设置UIbutton图片文字位置布局

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 设置UIbutton图片文字位置布局相关的知识,希望对你有一定的参考价值。

参考技术A 方法二: 加在extension UIbutton里

调用:注意如果按钮是动态宽度的话,要先设置宽度

使用 Swift 自动布局动画 UIButton

【中文标题】使用 Swift 自动布局动画 UIButton【英文标题】:Animate UIButton with Autolayout with Swift 【发布时间】:2016-01-05 17:51:52 【问题描述】:

你好社区我只想为 UIView 设置一个 UIButton 的动画。但它真的不适合我。

 self.introConstraints.constant = self.view.frame.width
    self.view.needsUpdateConstraints()
    UIView.animateWithDuration(0.6)
        self.view.layoutIfNeeded()
    

这就是我的代码的样子。

【问题讨论】:

省略self.view.needsUpdateConstraints(),它应该可以工作。你永远不能调用那个方法,如果你用 self.view.setNeedsUpdateConstraints() 替换它也应该没问题。 【参考方案1】:

=> 试试这个:-

UIView.animateWithDuration(0.6 , 动画: self.button.transform = CGAffineTransformMakeScale(0.6, 0.6)

,

completion:  

    UIView.animateWithDuration(0.6)

        self.button.transform = CGAffineTransformIdentity
    
)

=> 如果你想用弹簧动画获得更多的弹跳效果。:-

=>尝试以下代码:

@IBOutlet 弱变量按钮:UIButton!

@IBAction func animateButton(sender: AnyObject)

    button.transform = CGAffineTransformMakeScale(0.6, 0.6)

   UIView.animateWithDuration(2.0,

   delay: 0,
   usingSpringWithDamping: CGFloat(0.20),

   initialSpringVelocity: CGFloat(6.0),

   options: UIViewAnimationOptions.AllowUserInteraction,

   animations: 

        self.button.transform = CGAffineTransformIdentity
   ,
      completion:  Void in()  
 )

【讨论】:

【参考方案2】:

这真的很疯狂,但请确保您设置了正确的约束条件,这将对您有所帮助。

它应该与这样的东西一起工作

 self.startConstraints.constant = self.view.frame.width - self.startButton.frame.width
    UIView.animateWithDuration(0.6)
        self.view.layoutIfNeeded()
    

【讨论】:

【参考方案3】:

删除 self.view.needsUpdateConstraints()

【讨论】:

以上是关于swift 设置UIbutton图片文字位置布局的主要内容,如果未能解决你的问题,请参考以下文章

swift-UIButton设置image上下左右位置

iOS 调整UIButton 图片(imageView)与文字(titleLabel)的位置

改变UIButton 图片和文字的位置

UIButton图片文字控件位置自定义(图片居右文字居左图片居中文字居中图片居左文字消失等)

iOS button 里边图片和文字的距离

按钮相关属性设置(按钮文字位置 和图片位置设置)