import UIKit@IBDesignableclass MyB: UIbutton { @IBInspectable var angle: CGfloat = 0 { dIDSet { //What to put here? } } overrIDe init(frame: CGRect) { super.init(frame: frame) // Initialization code } required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) }}
我试过了
self.transform = CGAffinetransformMakeRotation(angle)
但它不起作用
解决方法 您应该创建从UIbutton继承的Custombuttonimport UIKit@IBDesignableclass Custombutton: UIbutton { @IBInspectable var rotation: Double = 0 { dIDSet { rotatebutton(rotation: rotation) } } func rotatebutton(rotation: Double) { self.transform = CGAffinetransform(rotationAngle: CGfloat(.pi/2 + rotation)) }}
你会得到以下输出,
总结以上是内存溢出为你收集整理的是否可以使用Swift旋转IBDesignable UIButton?全部内容,希望文章能够帮你解决是否可以使用Swift旋转IBDesignable UIButton?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)