Post

Replies

Boosts

Views

Activity

Reply to need for 'restore purchase'
Hi, As mentioned in the documentation, you can call this AppStore.sync() method. https://developer.apple.com/documentation/storekit/appstore/3791906-sync Task { // This call displays a system prompt that asks users to authenticate with their App Store credentials. // Call this function only in response to an explicit user action, such as tapping a button. try? await AppStore.sync() } I hope this helps.
Jan ’24
Reply to iPhone SE compatibility required for App Store approval?
Hi, Some apps like BIOHAZARD VILLAGE have restrictions regarding which devices can install them. In my case, to avoid restricting the installation of the app, certain features are limited, such as on-device Stable Diffusion Image Generation. This approach has been approved and is now available on the App Store. I hope this will help you.
Dec ’23
Reply to .OnHover function disabled in visionOS
Hi, In visionOS, the .onHover modifier is designed to work exclusively with a mouse or trackpad pointer, and unfortunately does not respond to gaze interactions. Currently, there are only two primary methods to interact with a user's gaze: Using the .hoverEffect() modifier. Implementing .help("some text here.") to provide additional information using ToolTip. I hope this information is helpful for you.
Dec ’23