Post not yet marked as solved
The tvOS and watchOS platforms aren't installed by default using Xcode 14. This poses a problem for continuous integration if Xcode was installed with only the default platforms (iOS and macOS). Is it possible to install additional platforms through the command line?
Post not yet marked as solved
The NSCollectionLayoutContainer protocol defines contentSize and effectiveContentSize. There's currently no documentation available for this protocol (and most of the compositional layout API). What is the difference between contentSize and effectiveContentSize and contentInsets and effectiveContentInsets?
A few years ago, Apple added the ability for users to download a legacy version of an application if their device no longer meets the requirements of the latest version of the application. There's very little information about this feature.Should the developer mark a version as a legacy version or is this handled by the App Store? Does the App Store automatically keep one or more versions around if the requirements of an application change? I've browsed App Store Connect, but I haven't been able to find any information about this.
Post not yet marked as solved
I've implemented picture in picture with the AVPictureInPictureController class. It works as long as the application is in focus. From the moment the application is pushed to the background, the picture in picture view fades out and disappears. The audio of the video continues to play in the background.The application follows Apple's guidelines by enabling the correct background mode and configuring the audio session. The moment the application enters the background, the "will stop" and "did stop" delegate methods of the AVPictureInPictureControllerDelegate protocol are invoked, indicating that picture in picture is about to be stopped.There are no logs that point to the root of the problem. Any help or pointers are much appreciated.
I've been experimenting with Xcode's Constraint Error breakpoint, but it's not being hit when the project contains Auto Layout issues. The outpout in Xcode's console clearly indicates the user interface has conficting constraints and the debugger suggests to add a symbolic breakpoint, but the Constraint Error breakpoint itself isn't being hit. Is this a known issue or am I overlooking something?