Post

Replies

Boosts

Views

Activity

Reply to iOS16 SwiftUI cannot figure out crash reason
I encountered a similar error when using List(_:selection:rowContent:) and selecting a row after updating the data source. I used "onTapGesture" for selection to overcome this problem. List(dataSource) { item in HStack { Text(item.name) Spacer() } .contentShape(Rectangle()) .onTapGesture { selection = item } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Oct ’23
Reply to App tested in TestFlight with renewal billing issue on iOS 18.4
Many developers are experiencing the same problem in both Sandbox and TestFlight: https://developer.apple.com/forums/thread/779023
Replies
Boosts
Views
Activity
Apr ’25
Reply to Billing Problem while subscription renewal.
In TestFlight, I am experiencing the same problem. I reported it using the feedback app: FB17064331.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Apr ’25
Reply to New subscription renewal rate in TestFlight
The subscription renewal speed in TestFlight is 1 day for all durations. https://developer.apple.com/help/app-store-connect/test-a-beta-version/subscription-renewal-rate-in-testflight We can request a refund instead of cancelling. The refund would be done in 10 min after requesting.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Jan ’25
Reply to iOS16 SwiftUI cannot figure out crash reason
I encountered a similar error when using List(_:selection:rowContent:) and selecting a row after updating the data source. I used "onTapGesture" for selection to overcome this problem. List(dataSource) { item in HStack { Text(item.name) Spacer() } .contentShape(Rectangle()) .onTapGesture { selection = item } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23