Search results for

“translate scheme”

6,658 results found

Post

Replies

Boosts

Views

Activity

Do custom URL schemes work in iOS10?
Our app uses custom URL scemes. For example: ourApp:// which relies on this delegate method:- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)urlTried this too:-(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotationFrom testing, I notice these methods are not being called.From the documenation, I notice these methods are deprecated.My questions are:a.) Are custom URL schemes still being supported in iOS10?b.) If not, what is the alternative?EDIT:I also notice that typing some well known custom URL schemes in the browser works as expected. For example mailto:// or tel://. However, typing ourApp:// results in a page not found error. This is not true for 9.x.
1
0
2.3k
Jun ’16
Reply to localization works in preview but not in simulator or device
Hello. We are experiencing this as well. The translations are working fine on the preview (assistant editor) but they are not on the simulator or device. It's a project that began pre-storyboard. However, XIB translations work correctly on the main project. We are experiencing this only on our own internal dynamic framework. We currently use Xcode 9.2 are have iOS9 as deployment target. We have already try everything we can think of, including your steps (except we can't just create a new app). Any recommendations?
May ’18
Apple's tvOS URL schemes?
I've got an app that lets people load user-defined content into it, and displays that content (for example for e-signage applications, interactive kiosks, et cetera).One of the things I'd like to do in it is put up a description of a podcast, and then put a button on the screen that tells Apple's Podcasts app to open it.I tried to do this via [[UIApplication sharedApplication] openURL: ]; with the URL for the podcast from the iTunes store, based on the claim I saw elsewhere that that works on iOS. It did not work for me on tvOS (9.3b2).I know our apps can provide custom URL schemes, and supposedly the openURL: method will work for one third-party app to open another third-party app. But right now I'm more interested in opening things in Apple's own apps (music, tv, movies, trailers, podcasts, and the app store).Do the tvOS versions of Apple's apps support any URL schems at all right now? Are they documented anywhere?
4
0
744
Jan ’16
Reply to Localization support- automatically export all words
It should be obvious to a translator who's familiar with XLIFF, which text should be translated. Presumably there are editing tools out there to help with this.Note that there are two sources of unlocalized text in XLIFF files:1. Text you used in code with NSLocalizedString (…), which specifies both the (base) text and a comment to guide the translator. (You can either have be the base text be in the base language, or be an arbitrary unique string that therefore needs to be localized into the base language. Which one you choose depends on the complexity of your project, I guess.)2. Text you used in your UI, such as buttons and labels in your storyboard. If you look in the Identity inspector, you'll see there's a comment for localizer text field down the bottom, which you can use to supply comments for these. It's unusual (I think) for this text to be in anything other than the base language.
Jul ’17
EXC_BAD_ACCESS : UIButton : touchDown() : Release Scheme
The following code crashes in XCode when run on a 'Release' scheme to crash (on any iDevice).It crashes with EXC_BAD_ACCESS(code=EXC_I386_GPFLT) trying to do a 'swift_arrayDestroy' with Xcode on line 19.Note : It does NOT crash when running on a 'Debug' scheme.+) Can anyone else reproduce this (just cut an paste -> Run -> click a few times on the RED Box that appears on the screen).+) Any ideas if this is a program error or an Xcode Release optimisation bug?+) Does anyone know if '@objc func touchDown(_ sender: MY_UIButton)' is safe?Should I use 'Any' .. and then attempt to cast to 'MY_UIButton'.Thanks,AJ.import UIKit var g_but = MY_UIButton(frame: CGRect(x: 100, y: 100,width: 200,height: 200)) let g_false = false let opt_zero : Int? = 0 class EMPTY_CLASS {} let g_empty_arr : [EMPTY_CLASS] = [] class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() g_but.backgroundColor = UIColor.red view.addSubview(g_but) g_but.addTarget(g_but,action: #selector(MY_U
1
0
1k
Apr ’18
Reply to Problem with localising a Swift package
I have the exact same problem ☹️ The app translates as expected for 90%, but one view (that is implemented through a local package) does not. In the local package manifest: _// swift-tools-version:5.9 _ and defaultLocalization: en were added Under myPackage/Sources/myTarget/Resources: A string catalog with the default name 'Localizable' was added When I compile the package's String catalog gets filled with all the new Text() items from the view and I can provide translation for them.
Topic: Programming Languages SubTopic: Swift Tags:
Aug ’23
URL Schemes in Google Search iOS App
Hi,We are from MasterCard iOS development team.We have a web application from which we are opening iOS apps using custom url schemes. This functionality works fine for the all the browser (Safari/chrome).But When we tried to open the same web app from Google Search app and then if we try to open iOS app on the same device using custom url schemes it does not do anything.From our research we are assuming Google search app in iOS is a native iOS app and has embedded web view.And according to Apple if we try to open custom url schemes from embedded web view, we must implement web view delegates in the app which is embedding this web view.Could you please give us more inputs or the resolution for opening the apps using custom url schemes from iOS Google Search app.
Topic: Safari & Web SubTopic: General Tags:
0
0
1.3k
May ’20
Do custom URL schemes work in iOS10?
Our app uses custom URL scemes. For example: ourApp:// which relies on this delegate method:- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)urlTried this too:-(BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotationFrom testing, I notice these methods are not being called.From the documenation, I notice these methods are deprecated.My questions are:a.) Are custom URL schemes still being supported in iOS10?b.) If not, what is the alternative?EDIT:I also notice that typing some well known custom URL schemes in the browser works as expected. For example mailto:// or tel://. However, typing ourApp:// results in a page not found error. This is not true for 9.x.
Replies
1
Boosts
0
Views
2.3k
Activity
Jun ’16
Reply to localization works in preview but not in simulator or device
Hello. We are experiencing this as well. The translations are working fine on the preview (assistant editor) but they are not on the simulator or device. It's a project that began pre-storyboard. However, XIB translations work correctly on the main project. We are experiencing this only on our own internal dynamic framework. We currently use Xcode 9.2 are have iOS9 as deployment target. We have already try everything we can think of, including your steps (except we can't just create a new app). Any recommendations?
Replies
Boosts
Views
Activity
May ’18
Apple's tvOS URL schemes?
I've got an app that lets people load user-defined content into it, and displays that content (for example for e-signage applications, interactive kiosks, et cetera).One of the things I'd like to do in it is put up a description of a podcast, and then put a button on the screen that tells Apple's Podcasts app to open it.I tried to do this via [[UIApplication sharedApplication] openURL: ]; with the URL for the podcast from the iTunes store, based on the claim I saw elsewhere that that works on iOS. It did not work for me on tvOS (9.3b2).I know our apps can provide custom URL schemes, and supposedly the openURL: method will work for one third-party app to open another third-party app. But right now I'm more interested in opening things in Apple's own apps (music, tv, movies, trailers, podcasts, and the app store).Do the tvOS versions of Apple's apps support any URL schems at all right now? Are they documented anywhere?
Replies
4
Boosts
0
Views
744
Activity
Jan ’16
Reply to iOS StoreKit Restore: Erneute Gewährung fehlgeschlagen. Kaufe erst das Softwareprogramm
The first word translates to “re-grant” which I assume is “restore”. The App Store believes the user never purchased the app.
Replies
Boosts
Views
Activity
Feb ’18
Reply to Localization support- automatically export all words
It should be obvious to a translator who's familiar with XLIFF, which text should be translated. Presumably there are editing tools out there to help with this.Note that there are two sources of unlocalized text in XLIFF files:1. Text you used in code with NSLocalizedString (…), which specifies both the (base) text and a comment to guide the translator. (You can either have be the base text be in the base language, or be an arbitrary unique string that therefore needs to be localized into the base language. Which one you choose depends on the complexity of your project, I guess.)2. Text you used in your UI, such as buttons and labels in your storyboard. If you look in the Identity inspector, you'll see there's a comment for localizer text field down the bottom, which you can use to supply comments for these. It's unusual (I think) for this text to be in anything other than the base language.
Replies
Boosts
Views
Activity
Jul ’17
Reply to Unable to Save in iTunes Connect My Apps
Thanks for the response. It appears the translations/locations issue still remains at large 😟Hopefully they'll get it fixed soon.
Replies
Boosts
Views
Activity
Jul ’15
Reply to Python vs Swift for macOS CLI tool?
Sounds wise to rewrite this in Swift. And I guess an LLM can probably help you translate the Python code to Swift 6 fairly easily?
Replies
Boosts
Views
Activity
Sep ’24
EXC_BAD_ACCESS : UIButton : touchDown() : Release Scheme
The following code crashes in XCode when run on a 'Release' scheme to crash (on any iDevice).It crashes with EXC_BAD_ACCESS(code=EXC_I386_GPFLT) trying to do a 'swift_arrayDestroy' with Xcode on line 19.Note : It does NOT crash when running on a 'Debug' scheme.+) Can anyone else reproduce this (just cut an paste -> Run -> click a few times on the RED Box that appears on the screen).+) Any ideas if this is a program error or an Xcode Release optimisation bug?+) Does anyone know if '@objc func touchDown(_ sender: MY_UIButton)' is safe?Should I use 'Any' .. and then attempt to cast to 'MY_UIButton'.Thanks,AJ.import UIKit var g_but = MY_UIButton(frame: CGRect(x: 100, y: 100,width: 200,height: 200)) let g_false = false let opt_zero : Int? = 0 class EMPTY_CLASS {} let g_empty_arr : [EMPTY_CLASS] = [] class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() g_but.backgroundColor = UIColor.red view.addSubview(g_but) g_but.addTarget(g_but,action: #selector(MY_U
Replies
1
Boosts
0
Views
1k
Activity
Apr ’18
Reply to Problem with localising a Swift package
I have the exact same problem ☹️ The app translates as expected for 90%, but one view (that is implemented through a local package) does not. In the local package manifest: _// swift-tools-version:5.9 _ and defaultLocalization: en were added Under myPackage/Sources/myTarget/Resources: A string catalog with the default name 'Localizable' was added When I compile the package's String catalog gets filled with all the new Text() items from the view and I can provide translation for them.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Aug ’23
URL Schemes in Google Search iOS App
Hi,We are from MasterCard iOS development team.We have a web application from which we are opening iOS apps using custom url schemes. This functionality works fine for the all the browser (Safari/chrome).But When we tried to open the same web app from Google Search app and then if we try to open iOS app on the same device using custom url schemes it does not do anything.From our research we are assuming Google search app in iOS is a native iOS app and has embedded web view.And according to Apple if we try to open custom url schemes from embedded web view, we must implement web view delegates in the app which is embedding this web view.Could you please give us more inputs or the resolution for opening the apps using custom url schemes from iOS Google Search app.
Topic: Safari & Web SubTopic: General Tags:
Replies
0
Boosts
0
Views
1.3k
Activity
May ’20
Reply to Metal runtime compile error (iOS 13 beta
Me too; I am playing with cocos2d-x v4 branch which translates glsl to msl and works fine on an iOS device. Did you have any luck with this?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Aug ’19
Reply to App Store doesn't display English among available languages for my new app
I am also having this issue. All strings are LocalizedStringResource and the catalog correctly has all the English translations. However an en.lproj folder is not create when archived.
Replies
Boosts
Views
Activity
2w
Reply to iPhone 12 LiDAR
My Device is iPad Pro 2020. About 1mm with LiDAR,0.5mm with front True Depth Camera. This reply was translated.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to Reinstall translate
Me too. I was downloading offline translation and it was taking too long and I could not see how to stop the download. Then I uninstalled it. Would like to reinstall it.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Sep ’20
Reply to How To update dispatch_async to Swift 3
Write :DispatchQueue.main.asyncTo create your own queue :DispatchQueue.global(qos: .userInitiated).asyncBut normally, this is translated automatically from Swift 2 to Swift 3
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Mar ’17