Post

Replies

Boosts

Views

Activity

Reply to SubscriptionStoreView policy sheet too large
I managed to fix this by wrapping the SubscriptionStoreView in a GeometryReader the displaying the links in a WebView using geometry.size.width .subscriptionStorePolicyDestination(for: .privacyPolicy, destination: { WebView(url: URL(string: "https://yourURL.com/policy.html")!) .frame(maxWidth: geometry.size.width) .padding(.bottom, -50) }) the padding removes a blank bit at the bottom of the view import WebKit import SwiftUI struct WebView: UIViewRepresentable { var url: URL func makeUIView(context: Context) -> WKWebView { let wKWebView = WKWebView(frame: .zero) return wKWebView } func updateUIView(_ webView: WKWebView, context: Context) { let request = URLRequest(url: url) webView.load(request) } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’24
Reply to SubscriptionStoreView policy sheet too large
I'm trying to get an app through review at the moment and had it declined because they said I hadn't linked to the terms and policy etc. Even though I used a VStack to show the links on the StoreView and they looked identical to the ones in subscriptionStorePolicyDestination. A solution or fix to this would be great
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’24
Reply to Pyro Panda demo from WWDC 25
In the beginning of the video he says its possible to download the full sample code and as some of the new post processing code gets skimmed over he mentions again how the full code is available for download.
Replies
Boosts
Views
Activity
Jun ’25
Reply to "Could not convert value introductory to event format"
same error for me as well, also looking for a fix
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to Missing a functional link to the Terms of Use (EULA)
just been rejected twice now for this. I have no idea where to put the link to Apples own EULA I see this in AppStoreConnect and I have it set to use Apples EULA but apparently this is not good
Replies
Boosts
Views
Activity
Dec ’24
Reply to SubscriptionStoreView policy sheet too large
I managed to fix this by wrapping the SubscriptionStoreView in a GeometryReader the displaying the links in a WebView using geometry.size.width .subscriptionStorePolicyDestination(for: .privacyPolicy, destination: { WebView(url: URL(string: "https://yourURL.com/policy.html")!) .frame(maxWidth: geometry.size.width) .padding(.bottom, -50) }) the padding removes a blank bit at the bottom of the view import WebKit import SwiftUI struct WebView: UIViewRepresentable { var url: URL func makeUIView(context: Context) -> WKWebView { let wKWebView = WKWebView(frame: .zero) return wKWebView } func updateUIView(_ webView: WKWebView, context: Context) { let request = URLRequest(url: url) webView.load(request) } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to SubscriptionStoreView policy sheet too large
I'm trying to get an app through review at the moment and had it declined because they said I hadn't linked to the terms and policy etc. Even though I used a VStack to show the links on the StoreView and they looked identical to the ones in subscriptionStorePolicyDestination. A solution or fix to this would be great
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’24
Reply to SubscriptionStoreView policy sheet too large
I have exactly the same problem and had to remove the .subscriptionStorePolicyDestination‘s I thought these are a requiment to get through App Store review
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’24
Reply to On Log Noise - Debugging
I get the top 2 errors on my app almost every time it launches
Replies
Boosts
Views
Activity
Sep ’24