Post

Replies

Boosts

Views

Activity

Reply to HLS Video in Simulator getting `segPumpRequestCustomURLForCryptKey` crash:
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
Apr ’22
Reply to SwiftUI Animations inside NavigationView
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)     } }
Jun ’22