Posts

Post not yet marked as solved
1 Replies
752 Views
My app works fine building from Xcode, but when it lands on the App Store it instantly crashes on launch. Its a simple UIKit with a couple swift packages. The crash report .ipa file says: Exception Type:	EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x8000000000000010 -> 0x0000000000000010 (possible pointer authentication failure) But I'm not even sure if that is the part I should be looking at.
Posted Last updated
.
Post not yet marked as solved
3 Replies
1k Views
I have a Mac catalyst app that has a root view controller of a UIDocumentBrowserViewController. When a document is selected, the editor view controller is presented modally (in fullscreen mode). This worked fine on iOS 14, and macOS Catalina, but when I run it on Big Sur, the editor VC will appear for a second, and then disappear, and the UIDocumentBrowserViewController gets shown again. (Not sure if the editor is being dismissed, or if another UIDocumentBrowserViewController is being shown on top.)
Posted Last updated
.
Post not yet marked as solved
1 Replies
686 Views
Is it possible to get the expandable outline list functionality without using a data model with children? For example, something like this: List { Text("Im a text row") OutlineRow(label: { Text("Outline Title") }, children: { Text("Im a text sub-row") Text("Im another text sub-row") Image("image-row") }) Image("image-row") }
Posted Last updated
.