Posts

Post not yet marked as solved
1 Replies
0 Views
you need to activate the audio session before it sends updates on Volume changes to your app. AVAudioSession.sharedInstance().setActive(true)
Post marked as solved
2 Replies
0 Views
I have a similar issue with lists in navigationViews. seems any animation causes rendering issues. I experienced it on WatchOS where the app becomes unresponsive when scrolling back to top, right when the navigation bar size is changed. struct TestView: View {     private let items: [String] = Array(0...20).map { String($0) }     var body: some View {         NavigationView {             List {                 Section(header: Text("header")) {                     ForEach(items, id: \.self) { item in                         Text(item)                     }                 }             }             .navigationTitle("Title")         } //        .animation(.easeInOut) // <- this causes rendering problems //        .transition(.slide)     } }
Post not yet marked as solved
1 Replies
0 Views
this is a known issue. I could not get it to work either. On device it works fine. see here https://developer.apple.com/forums/thread/682915
Post not yet marked as solved
2 Replies
0 Views
it might be related to https://developer.apple.com/forums/thread/691654 ? try xcrun altool --validate-app --type ios --file {IPA_PATH} --username "{APPLE_ID}" --password "{PASSWORD}" to find root cause
Post not yet marked as solved
5 Replies
0 Views
same here. this makes using the simulator impossible for us... :( we use HLS with key, no FairPlay Thread 17 Crashed:: Dispatch queue: com.apple.root.default-qos 0 MediaToolbox 0x11e995ac1 segPumpRequestCustomURLForCryptKey + 282 1 <translation info unavailable> 0x10e0d17dc ??? 2 MediaToolbox 0x11e985cd4 segPumpSendCryptKeyRequest + 1167 3 MediaToolbox 0x11e97d1f9 segPumpReadNextCryptKeyForStream + 181 4 MediaToolbox 0x11e99ece2 segPumpStreamDoDeliveryFollowUp + 1126 5 MediaToolbox 0x11e9a71f9 segPumpDeliverNextMediaForAllStreams + 598 6 MediaToolbox 0x11e9a606b segPumpOpen + 1618 7 MediaToolbox 0x11e6cf1a1 fpfsi_NowReadyForInspection + 1131 8 MediaToolbox 0x11e6f9282 fpfsi_deferredAssetBatchPropertyLoadComplete + 151 9 CoreMedia 0x1135337b1 figDeferredNotificationDispatchFunction + 39 10 libdispatch.dylib 0x117078b25 _dispatch_client_callout + 8 11 libdispatch.dylib 0x117089475 _dispatch_root_queue_drain + 781 12 libdispatch.dylib 0x117089c5e _dispatch_worker_thread2 + 155 13 libsystem_pthread.dylib 0x11767302e _pthread_wqthread + 256 14 libsystem_pthread.dylib 0x117671ffb start_wqthread + 15