Post

Replies

Boosts

Views

Activity

CKShare works only outside App Store released Application
Hi everyone, I have an application that allows to share Core Data records through CKShare. If I compile the app in debug or release mode on my devices with Xcode the Sharing functionality work like a charm, but if I download the application from App Store doesn't work, It seems that can't generate the link for sharing. Does anyone have any idea why? Thanks
1
0
322
Dec ’24
AppIntents and bool localization
Hi, I've implemented my App Intent that asks for an int and then for a boolean with requestDisambiguation. If I use [true, false] Siri doesn't translate to other languages automatically, just asks for true or false, no matter what the system language is. let providedValue2 = try await $myval.requestDisambiguation(among: [true, false], dialog: "") If I translate the values as strings it works perfectly by interacting with the screen but, with voice, Siri enter in an infinite loop with requestDisambiguation... let restrue = NSLocalizedString("BoolLocalize", comment: "") let resfalse = NSLocalizedString("BoolLocalize2", comment: "") let providedValue2 = try await $myval.requestDisambiguation(among: [restrue, resfalse], dialog: "") var providedBool = false if providedValue2 == restrue { providedBool = true } ... Can it be a bug or am I doing something wrong? Thanks
0
0
681
Apr ’23