Does anyone know the URL scheme for calling Apple Translate?
Search results for
file uri scheme
78,483 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hello, we want to build our projects with the command line, like :xcodebuild -target OurTarget -configuration OurConfig -archivePath project.xcarchive -scheme OurScheme archiveto be able to then, make a build with :xcodebuild -exportArchive -archivePath project.xcarchive -exportPath build -exportOptionsPlist build/exportOptions.plistThe problem is that we are using a script to export our project which remove all user data like scemes.So, what would be the best solution to use these commands without scheme ?Best regards
Use a data:... URI instead of an HTTP one.
Topic:
App & System Services
SubTopic:
General
Tags:
For one project in XCode, the toolbar near the upper left that shows Scheme and Destination have disappeared. They show when XCode is viewed full screen, but not when smaller. Other projects dont have this issue.I also note that at the upper right corner two right pointing arrows have appeared that show Scheme grayed out. I suspect this is related.How do I get the menus to show normally?
Is there a way to set a default active scheme? Every time I open a project it defaults to iphone 6s plus even though the projects are saved with different schemes. Thanks.
HI, what is fpsMgr.assetIDFromURI(uri) doing? can you provide me with sample code?
Topic:
App & System Services
SubTopic:
General
Tags:
Hi,All my active schemes names seem to be corrupted they are showing a GUID rather than the iOS version number.(This is the same in all projects)xCode 6.4 (6E35b)The scheme look likeiPhone 6 (6C .... a guid here ... )iPhone 6 (4A .... a 2nd GUID guid here ... ).... etcRather thaniPhone 6 (8.1)iPhone 6 (8.2).... etcEverything compiles correctly, but it makes it hard to know which version of iOS I am compiling against.I also have xCode 7.0 (&A121l) installed, which shows the Scheme names correctly.Any ideas on how to fix this ?Cheers,Phil
I found the solution. When you create the ID, you are not allowed to set the domain with a http or https prefix. But you MUST set the redirect uri with the prefix as you have to do it the same way in your code. This is clearly not visible in the console. Also, when you create the ID without the prefix and you want to remove the redirect uri and add the correct one with the prefix, Apple removes the prefix silently and you will still run into the same error. So the solution is to delete the ID, and recreate it with a redirect uri with prefix. Took me only 2 hours to figure this out.
Topic:
App & System Services
SubTopic:
General
Tags:
There should be only two slashes after the file: scheme.
Topic:
UI Frameworks
SubTopic:
AppKit
Tags:
Yeah. I tried that. AVAssetWriter fails because it wants to create the file and not just write to it.Adding... let res = mkfifo(path, 0o666) if (res != 0) { print(failed to create named pipe) return } let url = NSURL(fileURLWithPath:path) ...Is there a way to intercept the file open/creation call? I tried hooking to NSURLProtocol and passing a different scheme type; I called it pipe:. However, AVAssetWriter wants *only* file: schemes. I then tried creating hooking to file: schemes, but that path doesn't get exercised via the NSURLProtocol mechanism.
Topic:
Media Technologies
SubTopic:
Audio
Tags:
Did you create a project for your program? You need to create a project to be able to build and run programs in Xcode. Choose File > New > Project to create a project. If you're learning C++, create a Command Line Tool project, which is in the Application category under OS X.If you created a project and have no schemes, does choosing New Scheme instead of Manage Schemes create a new scheme for you?
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
It appears you can do this by taking a file URL and changing the scheme to shareddocuments://.
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Tags:
I'd like to answer the second question first. The lldb config file can be selected by editing the Run scheme action. Specifically, use the menu bar, go to Product -> Scheme. Make sure the desired scheme is selected, and click on Edit Scheme.... In the pop up window, select the Run action from the column on the left. Then click on the Info tab. The lldbinit file can be specified through the field in the middle. Going back to the first question. Since we can explicitly specify a path to the lldbinit file, we can place it anywhere in the project. Is this sufficient to get you going? Please let us know and I will follow up. Thanks!
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
While in Mac the ://apconfig:// apupdate schemes work fine and the airport opens automatically, in iOS I can't find any scheme that opens the airport utility
In a Xcode 12 beta 5 project on the DTK I see a My Mac (Designed for iPad) scheme in my iOS target. I'd like to run the app as an iPhone app on the DTK instead. How do I either add a My Mac (Designed for iPhone) scheme or edit the Designed for iPad scheme to iPhone?