Unable to look up screen scale and Unexpected physical screen orientation in Xcode 10

后端 未结 7 1167
梦毁少年i
梦毁少年i 2020-12-23 09:15

I have recently updated Xcode to version 10, and now my console displays:

MyApp[1618:133310] [AXMediaCommon] Unable to look up screen scale
MyApp[1618:133310         


        
相关标签:
7条回答
  • 2020-12-23 10:17

    I've experienced something similar. If restarting simulator doesn't do the trick, check your UI test code. Make sure your setup calls super.setup() somewhere:

    override func setup() {
        super.setup()
        // ....
    }
    
    0 讨论(0)
提交回复
热议问题