前提・実現したいこと
imageをセットしたボタンとセットしていないボタンを
押下時にボタンが暗転する機能を作成しています。
両方のボタンが押下時に、同じ明度で揃えたいのですが、
imageをセットしたボタンが、一定の明るさまでしか上がらず、
セットしていないボタンよりも暗くなってしまいます。
どのように同じ暗さに調節すればよいのでしょうか?
ご存知の方がいれば教えていただけると幸いです。
よろしくお願いします。
補足情報
Xcode 12.2
Swift 5.3.1
試したこと
以下のコードのタッチ開始時のalpha値を小数点第3位まで下げましたが、
途中の値で明度が変化しなくなりました。
Swift
1import UIKit 2 3class SimpleButton: UIButton { 4 5 var selectView: UIView! = nil 6 7 required init?(coder aDecoder: NSCoder) { 8 super.init(coder: aDecoder) 9 10 myInit() 11 } 12 13 override init(frame: CGRect) { 14 super.init(frame: frame) 15 16 myInit() 17 } 18 19 func myInit() { 20 21 // 角を丸くする 22 self.layer.cornerRadius = 5 23 self.clipsToBounds = true 24 25 // ボタンを押している時にボタンの色を暗くするためのView 26 selectView = UIView(frame: self.bounds) 27 selectView.backgroundColor = UIColor.black 28 selectView.alpha = 0.0 29 self.addSubview(selectView) 30 } 31 32 override func layoutSubviews() { 33 super.layoutSubviews() 34 35 selectView.frame = self.bounds 36 } 37 38 // タッチ開始 39 override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) { 40 super.touchesBegan(touches, with: event) 41 42 UIView.animate(withDuration: 0.1, delay: 0.0, options: UIViewAnimationOptions.curveLinear, animations: {() -> Void in 43 44 self.selectView.alpha = 0.3 45 46 }, completion: {(finished: Bool) -> Void in 47 }) 48 } 49 50 // タッチ終了 51 override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) { 52 super.touchesEnded(touches, with: event) 53 54 UIView.animate(withDuration: 0.1, delay: 0.0, options: UIViewAnimationOptions.curveLinear, animations: {() -> Void in 55 56 self.selectView.alpha = 0.0 57 58 }, completion: {(finished: Bool) -> Void in 59 }) 60 } 61}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。