Post

Replies

Boosts

Views

Activity

Reply to Xcode 12 issues running multiple test suites with 'Underlying Error: Invalid device state' [only when running via SSH]
I started to see this issue right after upgrading to Apple M1. xctest encountered an error (Failed to install or launch the test runner. If you believe this error represents a bug, please attach the result bundle at /Users/nalex/Library/Developer/Xcode/DerivedData/App-aneasilnxtjatpdadaucmmgyspqa/Logs/Test/Run-LibName-Unit-Tests-2021.02.20_17-38-24-+0300.xcresult. (Underlying Error: Invalid device state)) In my case, this is the output of the pod lib lint running unit tests from the command line on my machine. The same tests run OK from Xcode.
Feb ’21
Reply to Xcode26 build app with iOS26, UISplitViewController UI issue
This way of setting view controllers broke in iOS 26, causing the bug you reported: viewControllers = [firstVC, secondVC] instead, try this: if #available(iOS 26.0, *) { splitVC = UISplitViewController(style: .doubleColumn) splitVC.preferredSplitBehavior = .tile splitVC.setViewController(firstVC, for: .primary) splitVC.setViewController(secondVC, for: .secondary) } else { // your previous setup }
Topic: UI Frameworks SubTopic: UIKit Tags:
Oct ’25