If I attempt to run the following code:
photographer = photographer
I get the error:
Assigning a property to itself
I hope one day #Swift developers will fix this miscuzzi :)
Simple crutch:
func itself(_ value: T) -> T { return value }
Use:
// refresh style = itself(style) image = itself(image) text = itself(text)
(optionals including)