Post

Replies

Boosts

Views

Activity

App Store not updating screenshots
I made an update to an app but it's using screenshots from the previous update.I thought it might have been a caching issue on my device but I checked my app listing on other devices that hadn't visited it before and they still show the old screenshots.What's strange is that if I share the app in Messages it will show the new screenshot in the share preview but not in the App Store.Is anyone else seeing this?
18
1
15k
Oct ’17
How to mute input audio during capture session
I'm following the documentation here to capture video and audio. https://developer.apple.com/documentation/avfoundation/cameras_and_media_capture/avcam_building_a_camera_app I want to mute the input audio during parts of the capture session. I can create an audio connection like this and mute the audio using the "enabled" property. AVCaptureConnection *audioConnection = [movieFileOutput connectionWithMediaType:AVMediaTypeAudio]; audioConnection.enabled = NO; However, when I try to set this property later to "YES" the capture session stops recording with this error. Movie file finishing error: Error Domain=AVFoundationErrorDomain Code=-11818 "Recording Stopped" How do I mute and unmute input audio during a capture session?
0
0
935
Feb ’21