0
私が直接アルファを変更するUIColor
の拡張を書いた:迅速UIColorの拡張
public extension UIColor {
public var rgbaComponents: (red: CGFloat, green: CGFloat, blue: CGFloat, alpha: CGFloat) {
var components: [CGFloat] {
let c = cgColor.components!
if c.count == 4 {
return c
}
return [c[0], c[0], c[0], c[1]]
}
let r = components[0]
let g = components[1]
let b = components[2]
let a = components[3]
return (red: r, green: g, blue: b, alpha: a)
}
public var alpha: CGFloat {
get {
return cgColor.alpha
}
set {
var rgba = rgbaComponents
self = UIColor(red: rgba.red // error here: "cannot assign to value: 'self' is immutable"
, green: rgba.green, blue: rgba.blue, alpha: newValue)
}
}
}
をが、エラーがあります:
cannot assign to value: 'self' is immutable
それはしかし、自己に割り当てる日の延長が
public extension Date {
public var day: Int {
get {
return Calendar.current.component(.day, from: self)
}
set {
let allowedRange = Calendar.current.range(of: .day, in: .month, for: self)!
guard allowedRange.contains(newValue) else { return }
let currentDay = Calendar.current.component(.day, from: self)
let daysToAdd = newValue - currentDay
if let date = Calendar.current.date(byAdding: .day, value: daysToAdd, to: self) {
self = date // This is OK
}
}
}
}
OKですので、のUIColor
があちこちにさですm NSObject
とDateはSwift構造体ですか?根本原因は何ですか?
あなたは、コードの溶液を投稿することができますか? –
@Upholder残念ながら、私は拡張子を使用して解決策があるとは思いません。 'UIColor'のアルファ値を変更することなくアルファ値を変更することはできません。また、変更することはできません。 –
ありがとうございます! – Phoenix19