Search results for

“translate scheme”

6,658 results found

Post

Replies

Boosts

Views

Activity

Allow custom scheme for Redirect URI's
Currently trying to use `custom://oauth` as a redirect URI fails validation and is not allowed to be configured.For Android and Windows platforms, having a custom URI is super helpful to be able to redirect back to the app which initiated the authentication flow. Currently we have to use a WebView on Android instead of Custom Tabs because of this which is much less secure not as great of a user experience.Please allow us to specify a custom scheme for the Redirect URI.
3
0
4k
Jun ’19
Reply to Translations of Apple Developer Docs
I'm unsure if this is the right place for this inquiry. I don’t think there is a right place for this, but I’ve moved you over to DocC because it’s probably the closest. Swift Development closer to Spanish speakers. I created the site for the Spanish translation of The Swift Programming Language book Thanks for all that work. I noticed that the site already has Korean and Chinese translations. Are those provided by Apple directly … ? Yes. I'm interested in translating the Apple Developer Documentation if that's possible. This is sufficiently far outside of my area of expertise that I’m reluctant to offer definitive answers in public. Please drop me a line via email (my email address is in my signature, below). Make sure to reference this thread because I got a lot of email (-: Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
May ’23
Reply to How can I remove a localization from a String Catalog in a Swift Package?
Hello, The solution I came up to was: Close Xcode. Remove the hidden folder .swiftpm from the Package folder. I noticed the UserInterfaceState.xcuserstate file in a subfolder of this folder contained some references to the languages (I could find language codes in it like pt-PT). Open the package again with Xcode. The languages that weren't translated at all (0% progress) got removed from the string catalog. The other languages where at least one string was translated stayed in the string catalog. I don't think this is ideal but I hope it can help others. Axel
Oct ’25
Reply to Don't understand RealityKit's entity.move in visionOS immersive space
Hi @reinermaenner Thanks for the detailed question and sample code. Posts like yours help us easily recreate and troubleshoot questions! This may be a bug, but our teams will need to further investigate. Please consider filing a bug using Feedback Assistant. I think it may be related to triggering the animation during scene setup, but can't say for certain. In the meantime, I was able to work around the issue, by invoking the animation in a task after the parent child relationships are established. Here's the revised code. import SwiftUI import RealityKit import RealityKitContent struct ImmersiveView: View { @Environment(AppModel.self) var appModel let boardHeight: Float = 0.1 let boxHeight: Float = 0.3 var body: some View { RealityView { content in let boardEntity = makeBoard() content.add(boardEntity) let mesh = MeshResource.generateBox(width: 0.3, height: boxHeight, depth: 0.3) var material = UnlitMaterial(); material.color.tint = .green let boxEntity = ModelEntity(mesh: mesh, materials: [material]) boardE
Sep ’24
Reply to Impossible to rende an CIImage at a position under MTKview
How about using a transform filter (CIAffineTransform).You can first translate your image, then create a transparent background to match the size of your view and call imageByCompositingOverImage to make the result CIImage matches the size of your MTKView.let inputImage = ...//your image let translatedImage = inputImage.imageByApplyingTransform(CGAffineTransformMakeTranslation(200, 200)/*your translate transform*/) let canvas = CIImage(color: CIColor(red: 0, green: 0, blue: 0, alpha: 0)).imageByCroppingToRect(CGRectMake(0,0,/*ViewPixelWidth*/,/*ViewPixelHeight*/)) let outputImage = translatedImage.imageByCompositingOverImage(canvas) //Render outputImage to your view
Topic: Media Technologies SubTopic: General Tags:
May ’16
Reply to Where to store API key
Why do you need API key ? See this discussion: https://stackoverflow.com/questions/52177945/is-it-possible-to-integrate-google-translation-in-ios-app-programmatically-swif
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Error: Must provide credentials
Sorry, key tool was a wrong translation for Trousseau de clés in French, I meant Keychain Access. The credentials don't show up in Keychain.
Topic: Code Signing SubTopic: Notarization Tags:
Replies
Boosts
Views
Activity
Jan ’23
What is, and how would I create a URL scheme for use in an iOS API?
To integrate my iOS app into the Square point of sale app, I am required to specify a URL scheme in the URL Types in the Info tab of General settings in Xcode.I have no idea what to specify. Seems it will be used so the Square app can return to my app after it does its processing.Any help would be appreciated, thanks!
Replies
4
Boosts
0
Views
2k
Activity
Mar ’18
Allow custom scheme for Redirect URI's
Currently trying to use `custom://oauth` as a redirect URI fails validation and is not allowed to be configured.For Android and Windows platforms, having a custom URI is super helpful to be able to redirect back to the app which initiated the authentication flow. Currently we have to use a WebView on Android instead of Custom Tabs because of this which is much less secure not as great of a user experience.Please allow us to specify a custom scheme for the Redirect URI.
Replies
3
Boosts
0
Views
4k
Activity
Jun ’19
Reply to Translations of Apple Developer Docs
I'm unsure if this is the right place for this inquiry. I don’t think there is a right place for this, but I’ve moved you over to DocC because it’s probably the closest. Swift Development closer to Spanish speakers. I created the site for the Spanish translation of The Swift Programming Language book Thanks for all that work. I noticed that the site already has Korean and Chinese translations. Are those provided by Apple directly … ? Yes. I'm interested in translating the Apple Developer Documentation if that's possible. This is sufficiently far outside of my area of expertise that I’m reluctant to offer definitive answers in public. Please drop me a line via email (my email address is in my signature, below). Make sure to reference this thread because I got a lot of email (-: Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
May ’23
Reply to How can I remove a localization from a String Catalog in a Swift Package?
Hello, The solution I came up to was: Close Xcode. Remove the hidden folder .swiftpm from the Package folder. I noticed the UserInterfaceState.xcuserstate file in a subfolder of this folder contained some references to the languages (I could find language codes in it like pt-PT). Open the package again with Xcode. The languages that weren't translated at all (0% progress) got removed from the string catalog. The other languages where at least one string was translated stayed in the string catalog. I don't think this is ideal but I hope it can help others. Axel
Replies
Boosts
Views
Activity
Oct ’25
Reply to Don't understand RealityKit's entity.move in visionOS immersive space
Hi @reinermaenner Thanks for the detailed question and sample code. Posts like yours help us easily recreate and troubleshoot questions! This may be a bug, but our teams will need to further investigate. Please consider filing a bug using Feedback Assistant. I think it may be related to triggering the animation during scene setup, but can't say for certain. In the meantime, I was able to work around the issue, by invoking the animation in a task after the parent child relationships are established. Here's the revised code. import SwiftUI import RealityKit import RealityKitContent struct ImmersiveView: View { @Environment(AppModel.self) var appModel let boardHeight: Float = 0.1 let boxHeight: Float = 0.3 var body: some View { RealityView { content in let boardEntity = makeBoard() content.add(boardEntity) let mesh = MeshResource.generateBox(width: 0.3, height: boxHeight, depth: 0.3) var material = UnlitMaterial(); material.color.tint = .green let boxEntity = ModelEntity(mesh: mesh, materials: [material]) boardE
Replies
Boosts
Views
Activity
Sep ’24
Reply to Impossible to rende an CIImage at a position under MTKview
How about using a transform filter (CIAffineTransform).You can first translate your image, then create a transparent background to match the size of your view and call imageByCompositingOverImage to make the result CIImage matches the size of your MTKView.let inputImage = ...//your image let translatedImage = inputImage.imageByApplyingTransform(CGAffineTransformMakeTranslation(200, 200)/*your translate transform*/) let canvas = CIImage(color: CIColor(red: 0, green: 0, blue: 0, alpha: 0)).imageByCroppingToRect(CGRectMake(0,0,/*ViewPixelWidth*/,/*ViewPixelHeight*/)) let outputImage = translatedImage.imageByCompositingOverImage(canvas) //Render outputImage to your view
Topic: Media Technologies SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’16
Reply to How can I get localized badges?
Hello!Can I change the badge design download on the app storeWe want to translate into the Ukrainian language- download on the.In the guidelines, I did not find a badge in the Ukrainian language.
Replies
Boosts
Views
Activity
Oct ’18
Reply to Could not distribute safari web extension due to messages.json error
It should be allowed longer. In my case, Some languages are OK. But Some others were not in 112. because some others were much longer letter and more words to translate it. Please consider it this matter.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’22
Reply to SKExternalLinkAccount not choosing the right URL for phone region
I'm experiencing the exakt same behaviour, I can get the modal to be translated to different languages but it seems to default to the swedish URL (the country that I am situated in). Would be great to get some insight into this!
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
May ’23
When will Custom URL Scheme stop working accross apps
According to this article https://blog.branch.io/ios-9.2-redirection-update-uri-scheme-and-universal-links Custom URL Scheme stopped working in iOS 9.2 when triggered from Safari.Will this behavior be extended to deep links accross apps ? If yes, is it supposed to happen in iOS 9.3 or in a near future ?
Replies
0
Boosts
0
Views
1.1k
Activity
Feb ’16
Reply to Strange chinese character next to the iPhone folder name and different format of images
Eversince i got the beta installed same thing happenig to me as well. The folders are all appended with a chinese character (爀) and it translates to effort not sure what is the context though
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’23
Reply to Translation in Safari Technology Preview 14
Webpage Translation is only available on macOS Big Sur, iOS 14 and iPadOS 14. It isn't available on macOS Catalina, even with the latest Safari Technology Preview.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jun ’20
Reply to RealityKit add gestures and animations to Entity/ModelEntity
Unfortunately this doesn´t work for me 😟By setting arView.debugOptions = .showPhysics, the gestures (scale, rotate, translate) work only for the collision shape itself (parentEntity) and not for 'entity'!Thanks,
Topic: Graphics & Games SubTopic: RealityKit Tags:
Replies
Boosts
Views
Activity
Nov ’19