Hello!
Since iOS 18.0.1 I receive crash reports for iPadOS only, "Fatal error: <UpdateCoalescingCollectionView 0x30148e7c0> is stuck in a recursive layout loop. The error is not reproducible for me.
However, the screen where the user did the last touch event has no CollectionView but just a ScrollView. Can it be possible that this error can happen on a View that is not visible but is on another tab of the active UITabViewController(Representable) but has a UICollectionView? Or can you see somehow from the crash report on which SwiftIUView/UIKItView this error happened?
crash_report.crash
Post
Replies
Boosts
Views
Activity
Hello!
I'm getting crash reports in PHPickerViewController for iOS 17 users only. Can someone point me into the right direction what could be the root cause in my case since it's related to PHPickerViewController?
Thread 0 name:
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x00000001e7e9342c __pthread_kill + 8 (:-1)
1 libsystem_pthread.dylib 0x00000001fbc32c0c pthread_kill + 268 (pthread.c:1721)
2 libsystem_c.dylib 0x00000001a6d36ba0 abort + 180 (abort.c:118)
3 PhotoFoundation 0x00000001d2420280 -[PFAssertionPolicyAbort notifyAssertion:] + 68 (PFAssert.m:432)
4 PhotoFoundation 0x00000001d2420068 -[PFAssertionPolicyComposite notifyAssertion:] + 160 (PFAssert.m:259)
5 PhotoFoundation 0x00000001d242061c -[PFAssertionPolicyUnique notifyAssertion:] + 176 (PFAssert.m:292)
6 PhotoFoundation 0x00000001d241f7f4 -[PFAssertionHandler handleFailureInFunction:file:lineNumber:description:arguments:] + 140 (PFAssert.m:169)
7 PhotoFoundation 0x00000001d2420c74 _PFAssertFailHandler + 148 (PFAssert.m:127)
8 PhotosUI 0x0000000216b59e30 -[PHPickerViewController _handleRemoteViewControllerConnection:extension:extensionRequestIdentifier:error:completionHandler:] + 1356 (PHPicker.m:1502)
9 PhotosUI 0x0000000216b5a954 __66-[PHPickerViewController _setupExtension:error:completionHandler:]_block_invoke_3 + 52 (PHPicker.m:1454)
Crash report: 2024-09-05_18-27-56.7526_+0500-a953eaee085338a690ac1604a78de86e3e49d182.crash
When a new question is created on Apple developer forum, you have to manually click on the alarm button to watch it. When you forget to do it, you don't get notifications about answers to your own question. This doesn't make sense to me.
Expected behavior:
When a new question is created watching is automatically enabled for this question to receive answers via mail.
Also think about automatically enable watching for a question when you have answered a question. So you get notified if there are questions related to your given answer.
FB9138316
Hello!
Is the editorial team also on the WWDC21? Where can I talk to them or chat with them?
Thank you!
Hello, I tried to book a game center lab appointment, but there are no options available, and the next button is not clickable. Any help?
I am watching a question (alarm clock is marked blue), but I'm not receiving email updates about new comments. Beyond this in my profile the "watching" section remains empty.
It seems that this behavior is just related to certain questions, not to all. E.g. this one is not on my watch list: https://developer.apple.com/forums/thread/679098
Did I miss some settings, or is this a bug?
I want to automatically grant the privacy for reminders for all devices that run tests with Xcode bot. However, I have not found another way then doing it via grep in a pre-trigger action:
xcrun simctl list | awk -F "[()]" '{ for (i=2; i<NF; i+=2) print $i }' | grep '^[-A-Z0-9]*$' | xargs -I uuid xcrun simctl privacy uuid grant reminders com.app
Since no devices are booted in the pre-trigger-action, I receive this error:
An error was encountered processing the command (domain=com.apple.CoreSimulator.SimError, code=165):
Unable to lookup in current state: Shutdown
Is there any way to find out the UUID of the devices that are selected for the bot (that the bot should run) and only boot those devices?