“unsafeMutableAddressor : Swift.String”, referenced from:.."

前端 未结 2 629
星月不相逢
星月不相逢 2021-02-07 04:58

I got an error:

Undefined symbols for architecture x86_64: \"DirectBistro.DBTabBarOrderedIndexesKey.unsafeMutableAddressor : Swift.String\", ref

2条回答
  •  猫巷女王i
    2021-02-07 05:20

    It is possible to access application code from your UI tests. Just add the source file to the UI test target:

    You can then access that application code from within your UI test code:

    But bear in mind that the application code you're accessing thus from your UI Test is code running in your UI Test target (MyAppUITests), it does not correspond to the code running in the actual app target (MyApp). So do not use it to inspect or modify application state.

提交回复
热议问题