hello im using the new IOS 26 api for passkey creation ASAuthorizationAccountCreationProvider
however it only seems to work with apple's Passwords app. Selecting 3rd party password apps (1Password, google chrome, etc) does not create the passkey.
The sign up sheet gives me the option to save in 3rd party apps, but when I select a 3rd party app, I just get the ASAuthorizationError cancelled error? So I dont even know what the problem is?
When selecting "Save in Passwords(apple's app)" during the sign up it works fine
Has anyone else run into this issue? Is there something I need to do enable 3rd party apps?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi I am on ios 18 and xcode 16
I have a view that changes with a timer and I want to be able to long press that view and show a context menu. However the scroll on the context menu seems to be broken?
import SwiftUI
struct ContentView: View {
@State var number = 0
@State var timer = Timer.publish(every: 0.25,
on: .main,
in: .common).autoconnect()
var body: some View {
VStack {
Text(number.formatted())
.font(.largeTitle)
Text("Long press me")
Text("Notice context menu cannot scroll down")
}
.padding()
.background {
RoundedRectangle(cornerRadius: 10.0)
.fill(Color(uiColor: .secondarySystemBackground))
}
.contextMenu {
ForEach(0 ..< 100) { index in
Button {
print("option \(index)")
} label: {
Label("Option \(index)", systemImage: "globe")
}
}
}
.onReceive(timer) { t in
number += 1
}
}
}
Is this a bug in swiftUI? In my real application I want the context menu to be able to switch the kind of data the user is viewing.