Xcode build error: static setter referenced by user interface testing class

I am trying to update a static variable in the setup of a test UI class, and the assembly will fail with the following log:

enter image description here

In my application, I can set the value of this boolean from a non-static context through the installer. But not in the setup before testing the user interface, why?

+4
source share

Source: https://habr.com/ru/post/1659593/


All Articles