Can my paid app offer a free app clip?
Post
Replies
Boosts
Views
Activity
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")
}
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.
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.)