Search results for

“translate scheme”

6,658 results found

Post

Replies

Boosts

Views

Activity

Custom URL Scheme no working on Safari - Monterey
Hi. In Monterey beta 5 (the same was observed in previous betas) our application is not launched from Safari browser. The Bundle URL is properly registered in Info.plist (this is working OK in previous OS versions and also it is working ok in Monterey using other browser) The custom URL is registered in this way CFBundleURLTypes CFBundleTypeRole Editor CFBundleURLName NNNN CFBundleURLSchemes NNNN NNNN represents out custom url scheme I didn't find any reference about some change on this API on Monterey (https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app) Thanks
2
0
2.0k
Aug ’21
Maps URL Scheme
I have reviewed this document: https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html.It says:To perform a search, supply a properly encoded URL string as the value of the q parameter. For example:http://maps.apple.com/?q=Mexican+RestaurantHowever, I'm wondering if there are certain keywords that I can enter for the q parameter. What I'm trying to do is display the user's home address. I was hoping that if I ended the URL with ?q=Home it would accomplish what I want, but it just pulls up a Home Depot from another state.Does anyone know of a way to accomplish this? I'm working on the premise that the user has selected their contact card under My Info in the Contacts app, that they have programmed their home address into the contact, and that Maps is able to read that (if I manually type in Home into the search field in Maps, it does suggest my home address as a result).
0
0
3.8k
Sep ’17
Reply to Rotation in 3D
It's definitely clipping through something, and I've tried to scale it down in size and translating it forward/backward.. Still the exact same result. And the distance between the near and far plane looks to be plenty big enough.
Topic: Graphics & Games SubTopic: General Tags:
Jan ’16
Reply to Aspiring Developer
I'm still learning it myself, but felt it was the best approach to translate an existing program from another programming language. Then add a nicer UI or even new features. How long it takes you doesn't matter, but you will learn a lot.
Topic: App & System Services SubTopic: Core OS Tags:
Feb ’21
Reply to MyApp is calling TIS/TSM in non-main thread environment
Just to thank you, Ken. This really helped me. I was indeed using a Text Input Source in a background thread to translate key events to characters and vice versa. Apparently, that is a no-no, although it didn't crash my app.
Replies
Boosts
Views
Activity
Jul ’18
Reply to Sprite Editor wishlist & enhancements
Hello Tcatella,Currently there is support for snapping to nodes by holding shift while translating a node, but don’t hesitate to file requests to extend this feature.I didn't know this. Is there any manual for this editor? I never could find one.
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Replies
Boosts
Views
Activity
Dec ’15
Reply to The “” value for the NSLocationWhenInUseUsageDescription key isn’t allowed
Yes, i have this structure. Which is the same as i had it for years and never had an issue. The NSLocationWhenInUseUsageDescription exists as String in the Info.plist and also i have 2 InfoPlist files that contain the translated text for the above string in the format of: NSLocationWhenInUseUsageDescription = explanatory text....
Replies
Boosts
Views
Activity
Nov ’23
Reply to How do I display WebVTT Closed Captions using AVPlayer?
I have been looking at kanderson's code and trying to understand it. Considering the fact that it was posted a week ago the code is written in ancient Swift that I am unable to translate into modern Swift that will compile. If there was an example that is recent that would be appreciated.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to Can't submit the test version
Thank you for the post. Unfortunately, I am unable to translate the image at this time. Would you be able to post the output so that I can view the error message? Looks like is TestFight issue? Thank you. Albert Pascual
  Worldwide Developer Relations.
Replies
Boosts
Views
Activity
Oct ’25
Custom URL Scheme no working on Safari - Monterey
Hi. In Monterey beta 5 (the same was observed in previous betas) our application is not launched from Safari browser. The Bundle URL is properly registered in Info.plist (this is working OK in previous OS versions and also it is working ok in Monterey using other browser) The custom URL is registered in this way CFBundleURLTypes CFBundleTypeRole Editor CFBundleURLName NNNN CFBundleURLSchemes NNNN NNNN represents out custom url scheme I didn't find any reference about some change on this API on Monterey (https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app) Thanks
Replies
2
Boosts
0
Views
2.0k
Activity
Aug ’21
Maps URL Scheme
I have reviewed this document: https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html.It says:To perform a search, supply a properly encoded URL string as the value of the q parameter. For example:http://maps.apple.com/?q=Mexican+RestaurantHowever, I'm wondering if there are certain keywords that I can enter for the q parameter. What I'm trying to do is display the user's home address. I was hoping that if I ended the URL with ?q=Home it would accomplish what I want, but it just pulls up a Home Depot from another state.Does anyone know of a way to accomplish this? I'm working on the premise that the user has selected their contact card under My Info in the Contacts app, that they have programmed their home address into the contact, and that Maps is able to read that (if I manually type in Home into the search field in Maps, it does suggest my home address as a result).
Replies
0
Boosts
0
Views
3.8k
Activity
Sep ’17
Reply to No localization from Main.Storyboard (English)
No effect on Storyboard translations. I did another test by removing the Main.Storyboard (localiz) file. The Linker failed, good news, this file is required. But apparently it's not read at Run. Strange enough.
Replies
Boosts
Views
Activity
Jun ’18
Reply to Draw SwiftUI.Form style pop-up button with NSPopUpButton in AppKit
This should do it. NSPopUpButton *popupButton = [[NSPopUpButton alloc]initWithFrame:NSZeroRect]; [popupButton addItemsWithTitles:@[@Animal,@Dog,@Cow]]; popupButton.bezelStyle = NSBezelStyleFlexiblePush; popupButton.showsBorderOnlyWhileMouseInside = YES; [popupButton sizeToFit]; It should be easy enough to translate my Objective-C to Swift if needed.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Sep ’25
Reply to Rotation in 3D
It's definitely clipping through something, and I've tried to scale it down in size and translating it forward/backward.. Still the exact same result. And the distance between the near and far plane looks to be plenty big enough.
Topic: Graphics & Games SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’16
Reply to About 3D coordinate system of cameraCalibrationData.extrinsicMatrix
So the wide angle camera has a very slight distortion applied by its 3x3 matrix. It's possible that the translation vector is accounting for the resulting mis-alignment of the image (relative to the telephoto camera), rather than accounting for the distance between cameras.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Sep ’18
Reply to Aspiring Developer
I'm still learning it myself, but felt it was the best approach to translate an existing program from another programming language. Then add a nicer UI or even new features. How long it takes you doesn't matter, but you will learn a lot.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’21
Reply to std::thread::join() throw no_such_process error in iOS 10.*
no_such_process probably translates to ESRCH. If you burrow through the C++ goo do you find this coming back from pthread_join? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Replies
Boosts
Views
Activity
Mar ’21
Reply to Language settings for back Button
This seems to be a missing translation in iOS. It started in iOS 16, was fixed in iOS 17 betas and now unfortunately returned for 17.0. You can add a Localizable.strings file to your project containing the following text: Back = Zurück;
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to Choosing Minimum Deployment Targets
I would set it to 17.0. Xcode is smart enough to tell you if any of the frameworks that you intend to use is not available for the current deployment version. If I'm right, the Translation framework, which I hardly use, is available from 17.4, though.
Replies
Boosts
Views
Activity
1w