Hi J,
Thanks for the response!
Yes, Apple Intelligence is enabled on my Mac. When I run the app as "real" Mac Catalyst app, it's actually working.
I filed FB16077581 for this, including a very minimal sample project.
The following should be enough when added to a new iOS app project:
struct ContentView: View {
@State var playgroundVisible = false
var body: some View {
Button(action: { playgroundVisible.toggle() }, label: {
Label("Show Image Playground", systemImage: "apple.image.playground")
})
.padding()
.imagePlaygroundSheet(isPresented: $playgroundVisible) { url in
print("Image generated: \(url)")
}
}
}
Topic:
Machine Learning & AI
SubTopic:
Apple Intelligence
Tags: