Post

Replies

Boosts

Views

Activity

Reply to Xcode 14.0.1 crashes while idle
What worked for me was to commit every change directly from the Terminal. I checked on the Terminal git status and found out there were some things that didn't make sense, that I had committed days ago with Xcode, but they were still showing as modified. Committing from the Terminal seemed to have fixed the issue; Xcode is not crashing anymore. More details on this StackOverflow question
Jan ’23
Reply to StoreKit 2 Purchase doesn't load in App Review
Update from my side: After a few more attempts to try to explain the situation on the messages to the App Store Review team, I didn't succeed, they kept pointing me out to read the documentation of the SDKs. What I did at the end is release again, adding on the "Release Notes" and explanation that they might or might not see In-App Purchases, but that should not be considered a bug, as I'm relaying to StoreKit 2 to provide them. Not sure if this was enough or if some engineer from the Frameworks Team intervened, but in any case I got the app approved (8 days and 10 submits later). I hope it helps somebody else.
Sep ’21
Reply to SwiftUI: Markdown support for string variables
Try this: struct MarkdownTest: View {   var text: String = "**Hello** *World*"   var body: some View {     VStack {       Text("**Hello** *World*") // will be rendered with markdown formatting       Text(.init(text)) // this renders markdown properly     }   } } struct MarkdownTestPreviews: PreviewProvider {   static var previews: some View {     MarkdownTest()   } }
Sep ’21