Posts

Post not yet marked as solved
0 Replies
393 Views
Hi, are there any guidelines on how to present a SkProduct within the App when it is family shareable? Our app offers Auto-Renewing-Subscriptions and at the moment we are showing 3 different products for the user: "3 months" "6 months" and "1 Year". When family sharing is available later this year we want to add a new yearly family sharable product as a new option for our users. Are there any rules for the wording or UI we have to consider for a family sharable product? Best Sebastian
Posted Last updated
.
Post not yet marked as solved
0 Replies
491 Views
Hello,beginning with Xcode 11.4 I have crashes with the following simple sample code on a Simulator for watchOS. This works fine on a real device, but as you know watchos debugging/development on a real device is an other storry 🙂.When tapping the "Show Picker" Text the simulator crashes with "Thread 1: signal SIGABRT".import SwiftUI struct LandingView: View { var body: some View { List { NavigationLink(destination: PickerView()) { Text("Show Picker") } } } } struct PickerView: View { @State var counter: Int = 0 var body: some View { Picker(selection: $counter, label: EmptyView()) { ForEach(1...10, id: \.self) { Text(String($0)) } } } }When removing the surrounding List{} it works. When replacing the Picker{} with a Text() it also works.Has something changed with List, NavigationLink or Picker from Xcode 11.3 to Xcode 11.4 that I am missing? Or any suggestions how to fix this?Thanks Sebastian
Posted Last updated
.
Post marked as solved
2 Replies
1.3k Views
I am not sure if this can work, but I have a Standalone watchOS 6 app written in SwiftUI using the same setup like the iOS app:enabled Associated Domain Capability in the Watch Extensionenabled Sign in with Apple Capability in the Watch Extensionadded the Domain with: webcredentials: xxxadded the bundle identifier of the watch extension to the webcredentials in the apple-app-site-association file on my websiteused TextField(...).textContentType(.username)and SecureField(...).textContentType(.password)to set the content typesIf I create an ASAuthorizationAppleIDProvider and ASAuthorizationPasswordProvider request it shows only the AppleId but never the saved passwords from my iOS App. On the iOS App I can choose between AppleId and other Accounts created with mail and password.So SiwA and Autofill works fine on the iPhone but only Siwa works on the watch but no Password Autofill.Does password autofill works for anyone in combination with Siwa on the watch?
Posted Last updated
.