Search results for

“translate scheme”

6,670 results found

Post

Replies

Boosts

Views

Activity

Reply to Translations of Apple Developer Docs
The Korean and Chinese translations of The Swift Programming Language book are provided by community members. There does seem to be a Spanish translation, according to https://www.swift.org/documentation/#translations - maybe you could chat on the Swift Forums about it? There's a link to the appropriate subforum on that page i linked.
May ’23
Custom url scheme for key url
We are using custom url sheme for the key url eg. myscheme://twelve instead of skd://twelve. This (custom scheme) works on iOS. But it throwing up an error in Safari. Changing the scheme back to skd works in Safari. It there any limitation on the custom scheme that is supported by Safari? Or is there a method to register such custom sheme?
1
0
2.2k
Oct ’16
target scheme test as root
Hi,In target scheme editor, Run, we can Debug Process As root.How can we set the same option in Test as Debug Process As root. The option is disabled.I'm using Xcode Version 9.0 (9A235). I couldn't find anything in .xcscheme file.Thanks 🙂
0
0
693
Oct ’17
Reply to SpriteKit Hex Tile Radius. Possible?
SKTileMapNode uses what the article calls Offset coordinates. (see the beginning of the article). So to use any of the algorithms from the article you first need to translate from offset coordinates to the Cube coordinate sytem used there. Then translate back to offset coordinates. The algorithms for translating are also included in that article.
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Feb ’18
Preventing building of all schemes when running
I have a workspace / project with multiple schemes. When I go to run my current scheme, the middle status text bar shows that Xcode is going through each scheme and building it. I am trying to reduce build time and it seems that it is cycling through each one (sometimes endlessly).Running Version 9.1 (9B55).See the following video, it seems to repeat and start over from the beginning for the multiple schemes:youtu.be/EbA2VcJvVns
0
0
467
Nov ’17
Reply to Can someone help me to figure how to resolve the following runtime error?
Hi, LCS.Thanks for the Help here. AlamoFire is a library I used in my code to make a HTTP GET. The codes I pasted above was truncated. Here's the complete text:let parameters = [q:textToTranslate, langpair:en|es] Alamofire.request(.GET, http://api.mymemory.translated.net/get, parameters:parameters) .response { (_, _, data, _) in let translatedText: String? = data?.valueForKeyPath(responseData.translatedText) as! String? if let translated :String = translatedText{ self.textView.text = translated } else { self.textView.text = No translation available. }I send a Get request to http://api.mymemory.translated.net/ to translate a string from English to Spanish. I am expecting a string (translation) from the data?.valueForKeyPath. The app crached in valueForKeyPath. What other method would you suggest me to use? Thanks in Advanced.
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’15
Extension with multiple schemes and bundle IDs
Was wondering if someone could help me out. I have a an Xcode project set up with 1 main app target with 2 schemes (dev, live). Each scheme has a different bundle ID so that i can have both apps installed on the device at the same time. All is working fine, although I’m now trying to also add an notification extension. I have set the bundle id of the extension to be dynamic so that it matches its parent id. Although, when building from dev scheme it stills says the parent id does not match. Live seems to be build fine. Im not sure what I’m doing wrong. It looks like the extension doesn’t get built when i change schemes. Any suggestions have i can have 1 extension and 2 different schemes? Thanks 🙂
1
0
4.1k
Aug ’17
Reply to String Catalog stops updating upon changing source code
But once that string is translated If by this you mean that it has translations in other languages, then Xcode is expected to update the value and mark translations as needing review automatically. But if the source string itself is already marked as translated in the xcstrings file, then you are already in a conflicted state where there is a value in code and also a source value in the xcstrings. In that case, it is expected because Xcode will never change the value of a source string that is marked as translated in the source language. It is only allowed to do so if the state is new. When such a string with a default value from code first appears in the String Catalog, it will have a state of new. The String Catalog Editor then prevents editing this string from the Catalog because the code defined the value and we don't want conflicting state. But perhaps in your case something or someone went into the JSON and flipped it to translated. In that case, thi
Jan ’26
Reply to Translations of Apple Developer Docs
The Korean and Chinese translations of The Swift Programming Language book are provided by community members. There does seem to be a Spanish translation, according to https://www.swift.org/documentation/#translations - maybe you could chat on the Swift Forums about it? There's a link to the appropriate subforum on that page i linked.
Replies
Boosts
Views
Activity
May ’23
Application with Settings url schemes
Hi All,Does apple reject applications that opens settings screen with url schemes such as App-prefs:root=wifi or prefs:wifi.Thanks in advance.
Replies
0
Boosts
0
Views
950
Activity
Apr ’18
Custom url scheme for key url
We are using custom url sheme for the key url eg. myscheme://twelve instead of skd://twelve. This (custom scheme) works on iOS. But it throwing up an error in Safari. Changing the scheme back to skd works in Safari. It there any limitation on the custom scheme that is supported by Safari? Or is there a method to register such custom sheme?
Replies
1
Boosts
0
Views
2.2k
Activity
Oct ’16
Emoji as Custom URL Scheme
Hi fellow Saplings,I'm wondering if we can use Emoji as the header for custom URL schemes in iOS apps.For instance : U+1F4A9://
Replies
1
Boosts
0
Views
965
Activity
Sep ’17
target scheme test as root
Hi,In target scheme editor, Run, we can Debug Process As root.How can we set the same option in Test as Debug Process As root. The option is disabled.I'm using Xcode Version 9.0 (9A235). I couldn't find anything in .xcscheme file.Thanks 🙂
Replies
0
Boosts
0
Views
693
Activity
Oct ’17
Reply to separate thousands in textfield
If you need in swift, just translate from objective C ! 😉Seriously, what is the specific point of translation that causes you problem ?
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’16
Reply to NSCollectionViewDataSource method return different result in Objc and Swift ?
to receive yours (I understand you did the translation).You can find may translated version:{GitHub's URL}/ooper-shlab/CocoaSlideCollection-Swift
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’16
Reply to SpriteKit Hex Tile Radius. Possible?
SKTileMapNode uses what the article calls Offset coordinates. (see the beginning of the article). So to use any of the algorithms from the article you first need to translate from offset coordinates to the Cube coordinate sytem used there. Then translate back to offset coordinates. The algorithms for translating are also included in that article.
Topic: Graphics & Games SubTopic: SpriteKit Tags:
Replies
Boosts
Views
Activity
Feb ’18
Preventing building of all schemes when running
I have a workspace / project with multiple schemes. When I go to run my current scheme, the middle status text bar shows that Xcode is going through each scheme and building it. I am trying to reduce build time and it seems that it is cycling through each one (sometimes endlessly).Running Version 9.1 (9B55).See the following video, it seems to repeat and start over from the beginning for the multiple schemes:youtu.be/EbA2VcJvVns
Replies
0
Boosts
0
Views
467
Activity
Nov ’17
Reply to Can someone help me to figure how to resolve the following runtime error?
Hi, LCS.Thanks for the Help here. AlamoFire is a library I used in my code to make a HTTP GET. The codes I pasted above was truncated. Here's the complete text:let parameters = [q:textToTranslate, langpair:en|es] Alamofire.request(.GET, http://api.mymemory.translated.net/get, parameters:parameters) .response { (_, _, data, _) in let translatedText: String? = data?.valueForKeyPath(responseData.translatedText) as! String? if let translated :String = translatedText{ self.textView.text = translated } else { self.textView.text = No translation available. }I send a Get request to http://api.mymemory.translated.net/ to translate a string from English to Spanish. I am expecting a string (translation) from the data?.valueForKeyPath. The app crached in valueForKeyPath. What other method would you suggest me to use? Thanks in Advanced.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’15
Extension with multiple schemes and bundle IDs
Was wondering if someone could help me out. I have a an Xcode project set up with 1 main app target with 2 schemes (dev, live). Each scheme has a different bundle ID so that i can have both apps installed on the device at the same time. All is working fine, although I’m now trying to also add an notification extension. I have set the bundle id of the extension to be dynamic so that it matches its parent id. Although, when building from dev scheme it stills says the parent id does not match. Live seems to be build fine. Im not sure what I’m doing wrong. It looks like the extension doesn’t get built when i change schemes. Any suggestions have i can have 1 extension and 2 different schemes? Thanks 🙂
Replies
1
Boosts
0
Views
4.1k
Activity
Aug ’17
Can i get url scheme from application token?
I want to open an app which user chose from FamilyActivityPicker. What i know is that ios needs url scheme when open another app in an app, and familyActivityPicker can give me some application info. for example, i can get selected app's title and icon through Label(:ApplicationToken). Can I get url schemes similar to this way?
Replies
1
Boosts
0
Views
595
Activity
Aug ’23
What is the URL Scheme for Apple Tips app?
From another mobile app or Safari, I can launch Maps using the url scheme maps://What is the URL scheme for the Apple Tips app?
Replies
1
Boosts
0
Views
395
Activity
Aug ’15
voice line over tel: scheme
My App uses the tel: scheme to initialize calls. with 12.1 beta 2 i checked this out with my new dual esim. i cant select the voice line with the url scheme. any suggestions ?
Replies
0
Boosts
0
Views
449
Activity
Oct ’18
Reply to String Catalog stops updating upon changing source code
But once that string is translated If by this you mean that it has translations in other languages, then Xcode is expected to update the value and mark translations as needing review automatically. But if the source string itself is already marked as translated in the xcstrings file, then you are already in a conflicted state where there is a value in code and also a source value in the xcstrings. In that case, it is expected because Xcode will never change the value of a source string that is marked as translated in the source language. It is only allowed to do so if the state is new. When such a string with a default value from code first appears in the String Catalog, it will have a state of new. The String Catalog Editor then prevents editing this string from the Catalog because the code defined the value and we don't want conflicting state. But perhaps in your case something or someone went into the JSON and flipped it to translated. In that case, thi
Replies
Boosts
Views
Activity
Jan ’26