Search results for

file uri scheme

78,483 results found

Post

Replies

Boosts

Views

Activity

Xcodebuild archive without scheme
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
1
0
1.7k
Mar ’16
Scheme Destination Toolbar Missing
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?
4
0
3.5k
Jul ’15
xCode 6.4 scheme names
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
9
0
713
Jul ’15
Reply to Invalid redirect_uri in Apple sign in
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:
Nov ’20
Reply to Using AvAssetWriter with named pipes in iOS
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:
Mar ’16
Reply to "Run" and "Build" buttons greyed out?
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?
Dec ’15
Reply to lldbinit file in Xcode
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!
Jun ’25