iOS devs: anyone having any luck with your 26.0 toolbar buttons NOT sometimes being drawn light-on-light with Reduce Transparency in dark mode?
@stroughtonsmith Having to deal with customer reports of bugs in my app that are really iOS 26.0 bugs is getting old very quickly.
I've got enough legit bugs of my own! I don't need Apple's, too!
@marcoarment in some cases I have a bit of luck with doing the contrast calc myself for e.g. text labels and forcing a black or white directly based on the surrounding "color" read via heavy usage of extensions
e.g let luminance = 0.299 * red + 0.587 * green + 0.114 * blue
return luminance > 0.7 ? .black : .white