You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to be an issue with XCTest/XCode as it happens even if I use native methods to convert a view to an image within a XCTest context, but I thought it would still be worth tracking here too, in case you have any ideas or workarounds.
Essentially I have a test where I define two dynamic colours:
dynamicColor1 is green in dark mode, purple in light mode, and black in iOS < 13.0
dynamicColor2 is orange in dark mode, cyan in light mode, and black in iOS < 13.0
For the light mode snapshot, I simply take a screenshot of the UIView.
For the dark mode snapshot, I create a new instance of the View, set userInterfaceStyle to dark and take a screenshot of the UIView
As you can see in the test snapshots, the dynamic text colour is being correctly applied when I force userInterfaceStyle on the UIView, while the dynamic background colour is not.
The text was updated successfully, but these errors were encountered:
This seems to be an issue with XCTest/XCode as it happens even if I use native methods to convert a view to an image within a XCTest context, but I thought it would still be worth tracking here too, in case you have any ideas or workarounds.
Open radar bug: http://www.openradar.appspot.com/7404933
Essentially I have a test where I define two dynamic colours:
For the light mode snapshot, I simply take a screenshot of the UIView.
For the dark mode snapshot, I create a new instance of the View, set
userInterfaceStyle
todark
and take a screenshot of the UIViewAs you can see in the test snapshots, the dynamic text colour is being correctly applied when I force
userInterfaceStyle
on the UIView, while the dynamic background colour is not.The text was updated successfully, but these errors were encountered: