Post

Replies

Boosts

Views

Activity

Reply to [iOS 26] UIVideoEditorController preview's top bar is overlapping with parent view controller
Issue resolved when presenting the CameraViewController over the root view controller with `UIModalPresentationStyle.fullScreen'. It introduced a new problem: the title color is now black, and the parent view controller's background color needs to be black, making the title unreadable. I have already tried setting tintColor and titleTextAttributes for the UIVideoEditorController's navigation bar, but these did not resolve the issue. Setting the background color for the UIVideoEditorController's navigation bar also does not seem to be a suitable solution, as demonstrated in the attached video. Please refer the sample application for more details in the feedback: FB19754948
Topic: UI Frameworks SubTopic: UIKit Tags:
Oct ’25
Reply to AVAudioSessionCategoryPlayback is not allowed while CallKit call is active
Thank you for the clear explanation. We must emphasize that, as a Mission critical Push-to-Talk (PTT) application, the perceived volume and clarity of the audio are fundamental user requirements. We currently achieve the necessary amplification and clarity using a custom PCM gain factor. Therefore, the ability for our application to apply a specific gain factor to PCM samples for amplification is essential. Could you please advise on which framework or API Apple recommends for a third-party application to intercept and process the audio stream—specifically, to apply a GAIN factor to PCM samples—during an active CallKit call?
Topic: Media Technologies SubTopic: Audio Tags:
Nov ’25
Reply to Age Range API - Sandbox Testing Available
we did went through the following WWDC video https://developer.apple.com/videos/play/wwdc2025/299/ and it is mentioned that Users can manage the cached responses in settings. We did not see any such settings, not even under the sandbox account "Test Age Assurance". Could you please let us know how do we clear the cached age response
Topic: App & System Services SubTopic: General Tags:
4w
Reply to Age Range API - Sandbox Testing Available
Xcode Version 26.2 beta 2 (17C5038g) iOS Version 26.2 (23C5044b) do { let response = try await AgeRangeService.shared.isEligibleForAgeFeatures // Handle response if response { print("Eligible for age features") } else { print("Not eligible for age features") } } catch AgeRangeService.Error.notAvailable { print("isEligibleForAgeFeatures not available error") } catch { print("isEligibleForAgeFeatures Unhandled error: \(error)") } The above code snippet gets hang at the API call isEligibleForAgeFeatures could you please suggest what is wrong here
Topic: App & System Services SubTopic: General Tags:
3w
Reply to [Core Bluetooth]The Application Playing a Notification Tone (AVAudioPlayer, System sounds) Should Automatically Route Audio to the Connected BLE accessory which uses HFP Profile
Application is using AVAudioSessionCategoryPlayAndRecord category and AVAudioSessionCategoryOptionAllowBluetooth Option to play the Notification tone. But as per the Apple documentation AVAudioSessionCategoryOptionAllowBluetooth Option is Deprecated and the Document suggests to use AVAudioSessionCategoryOptionAllowBluetoothHFP as alternative. But AVAudioSessionCategoryOptionAllowBluetoothHFP Option is not defined in AVAudioSessionCategoryOptions Is there any option to use as alternative of AVAudioSessionCategoryOptionAllowBluetooth option?
Topic: App & System Services SubTopic: Core OS Tags:
3w
Reply to [Core Bluetooth]The Application Playing a Notification Tone (AVAudioPlayer, System sounds) Should Automatically Route Audio to the Connected BLE accessory which uses HFP Profile
How are you doing this? The audio system should not be allowing PlayAndRecord to directly activate in a background app. For Notification Tones Audio session category is configured to AVAudioSessionCategoryPlayAndRecord with VoiceChat mode and AllowBluetooth option Tones play using system audio services without an active audio session No background audio session activation occurs for notification tones
Topic: App & System Services SubTopic: Core OS Tags:
2w