Post

Replies

Boosts

Views

Activity

AVPlayerViewController not displaying playback controls in iOS 18
Hi everyone, I’ve encountered an issue with the showsPlaybackControls property in AVPlayerViewController after updating to iOS 18. Even though it’s set to true, the native playback controls (play, pause, etc.) are no longer appearing as they used to in previous iOS versions. This behavior was consistent and worked perfectly prior to iOS 18. Additionally, I’m seeing the same problem when using the VideoPlayer in SwiftUI. The native controls that should appear by default seem to have vanished after the update. Has anyone else experienced this? Is there any workaround or additional configuration required to restore the native controls? Any help or insights would be appreciated. Thanks! struct CustomPlayerView: UIViewControllerRepresentable { let player: AVPlayer func updateUIViewController(_ playerController: AVPlayerViewController, context: Context) { playerController.player = player playerController.showsPlaybackControls = true player.play() } func makeUIViewController(context: Context) -> AVPlayerViewController { return AVPlayerViewController() } }
8
0
435
Oct ’24
What happens to auto-renewing subscriptions if I remove the subscription from the available list?
Hello, We've an application with different subscriptions, and currently we don't offer some of them anymore through the app. But users that have those subscriptions still using them and we want to keep that. The problem is that the users can reactivate those subscriptions from iCloud Settings -> Past purchases. My question is, what happen if we remove those subscriptions from App Store Connect? Are we loosing current subscriptions? Appreciate any help here. Regards
0
0
332
May ’22