Search results for

file uri scheme

78,684 results found

Post

Replies

Boosts

Views

Activity

how to use Restrictions URL Scheme?
I've use following source code for directly move to iCloud in setting,it is working fine but i want know it is valid? Please reply me as soon as possible.[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@prefs:root=CASTLE]];
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
205
Dec ’16
Reply to Xcode 15 beta strings catalog
@Developer Tools Engineer - Thank you for answering this question. I do understand that string catalog files are designed to be interfaced by XCode. I would like to also bring your attention that there are other valid and relatively common scenarios where other tools need to read/write to this string catalog file. In an enterprise setting xcstrings file as well as other source code will be tracked in a git repository. This means that there are external localization tools via various integrations that directly read/write to this repository. If an enterprise is using an external tool to manage localizations, that tool can directly commit the changes to that xcstrings file without involving a developer or XCode. In fact this is the very reason enterprises uses external tools because not involving developer in every task increases productivity of the company. You might say that you can export/import xcstrings file to other formats like xliff. However, that still involv
May ’24
Sign in with Apple - set "http://localhost/oauth2/apple" as return url (redirect uri)
Hi, I found Okta doc says it's not possible. Is it really true? It’s worth noting that Apple doesn’t allow localhost URLs in this step, and if you enter an IP address like 127.0.0.1 it will fail later in the flow. You have to use a real domain here. Because setting up certificate for https locally, or etc/host is hacky and not very friendly. I'm using Spring Security to build Sign in with Apple and following OIDC flow
0
0
4.1k
Dec ’21
Failed to build the scheme "project name"
Hello, Developer team! Does anyone have an idea about the problem I'm facing with the simulator ? I'm learning how to code in SwiftUI and my simulator was working just fine but yesterday I close my laptop the other day and open today and see the code : import SwiftUI import SwiftData @main struct first_projectApp: App { var sharedModelContainer: ModelContainer = { let schema = Schema([ Item.self, ]) let modelConfiguration = ModelConfiguration(schema: schema, isStoredInMemoryOnly: false) do { return try ModelContainer(for: schema, configurations: [modelConfiguration]) } catch { fatalError(Could not create ModelContainer: (error)) } }() var body: some Scene { WindowGroup { ContentView() } .modelContainer(sharedModelContainer) } } I don't know where it comes from . I used IOS 17.5 I try to upgrade to IOS 18 but that didn't fix the problem. Currently I'm seeing 3 errors : Showing Recent Errors Only Build target first project of project first project with configuration Debug Ld /Users/amedekatamatode/Library/Devel
2
0
1.5k
Jul ’24
Reply to Where is comment syntax defined?
The reason is that anytime you use a non-approved link in your post; it will be moderated (eventually) by Apple. In reality, I've never seen one get posted. To be sure that any URI are not interpreted as links just enclose the link in parenthesis and remove the (http: //) header.
Aug ’15
Reply to What's the non-sandboxed path to Downloads folder on the iPhone
On iOS there’s no supported way to construct paths to items outside of your apps containers. The only supported way to get such paths is to ask the user for them, using the file selection API from the UI framework you’re using. Furthermore, this is a concern: [quote='781930021, delingren, /thread/781930, /profile/delingren'] I know the URL scheme is shareddocuments [/quote] AFAIK this is not a a documented URL scheme. I discuss that topic in more detail in Supported URL Schemes. WARNING Don’t build a product that relies on unsupported implementation details like. It’s very likely that your product will break in future releases of iOS and, if it does, there’s a good chance that there’ll be no path forward for your app. If you’d like us to add a supported mechanism to achieve this goal, I encourage you to file an enhancement request describing your requirements. Please post your bug number, just for the record. Share and Enjoy — Quinn “The Eskimo!” @ Developer Techni
Topic: App & System Services SubTopic: Core OS Tags:
Apr ’25
Reply to Content Steering Error in Handling Steering Manifest
Thank you for the fast reply! I removed the aws pathway as suggested, but the error remains. I've validated the playlists and verified that I can play the media from both the azure and edge CDNs. In fact, I can switch between the CDNs using content steering as long as both pathway ids are specified in the manifest. For example, using manifest #EXTM3U #EXT-X-CONTENT-STEERING:SERVER-URI=https://example.com/content-steering?switching=true,PATHWAY-ID=azure #EXT-X-STREAM-INF:BANDWIDTH=5605600,RESOLUTION=416x240,CODECS=avc1.64001e,mp4a.40.2,PATHWAY-ID=azure https://azure.com/contentsteering/stream_0/stream.m3u8 #EXT-X-STREAM-INF:BANDWIDTH=5605600,RESOLUTION=416x240,CODECS=avc1.64001e,mp4a.40.2,PATHWAY-ID=edge https://edge.com/contentsteering/stream_0/stream.m3u8 and steering manifest { VERSION: 1, TTL: 10, RELOAD-URI: https://example.com/content-steering?&switching=true, PATHWAY-PRIORITY: [ edge, azure, aws ], PATHWAY-CLONES: [] } (It works with and without aws in the priority list, even thoug
Topic: Media Technologies SubTopic: Streaming Tags:
Dec ’22
Reply to Skip the "Do you want to open ?" Modal
Thank you for sharing your post. To ensure seamless navigation from your Angular web application to your native iOS app via a webclip without user interaction or prompts, Universal Links may be a suitable solution. However, it’s important to note that Apple imposes restrictions on automatic launches of native apps from web content for security reasons. Regarding your mention of using URL Schemes instead of Universal Links, I would like to understand the reasons behind your decision to discontinue using Universal Links? Universal Links Universal Links are designed to open your app directly if it's installed, or fall back to a website if not. This is the most seamless user experience available without dealing with URL schemes and prompts. Ensure your app's entitlements and Apple Developer account are set up correctly to handle Universal Links. If the conditions you mentioned can be checked via deep link parameters, include these in your Universal Link setup. Custom URL Schemes: If Uni
Topic: Community SubTopic: Apple Developers Tags:
Apr ’25
Reply to UI Testing target locale and region settings
Is not via XCODE?XCODE->Product->Scheme->Edit Scheme->Run (left menu)->Options (Tab)->Application Language = English (I could setup to Portuguese (Brazil), but I intend to use the language English.XCODE->Product->Scheme->Edit Scheme->Run (left menu)->Options (Tab)->Application Region = Brazil (here I intend to use Brazillian's regional settings -> 1.200,43)
Apr ’20
After Swift3 conversion: Several compiler errors on one scheme only (in XCode 8)
After Swift 3 conversion I am experiencing a frustrating issue. I have two schemes in my project which both use the same target. On one scheme I can run tests, however on the other scheme I get the following 5 errors:`mach-o linker`, `lipo error`, `ditto error`, `can not parse debug map`, and `segmentation fault 11`Based on various things I found online I have tried:- changing build active architecture to NO / YES- changing debug information format to DWARF / DWARF with dSYM File- hard coded the bridging header path- diffed the Bridging Header (it's the same as before Swift 3)- deleted derived data folder (hundreds of times)- deleted cache folder (hundreds of times)- deep cleaned (hundreds of times)- restarted Xcode- restarted the computer itself- set rwx permissions on the project directory- had other people check my podfile to make sure it's fine- checked target membership of every file in the Tests and KIF targets- Enable Bitcode is already set to No
0
0
382
Sep ’16
Reply to How can I trigger the Full Disk Access prompt to write to a raw block device?
[quote='777577021, coolaj86, /thread/777577, /profile/coolaj86'] I'm not a Swift coder, but I'd like to be [/quote] Well, you’ve chosen a hard place to start |-: I have a lot to say about this but I want to start by addressing two specific comments: [quote='777577021, coolaj86, /thread/777577, /profile/coolaj86'] I did change Sandbox App to NO in MyApp.entitlements [/quote] Don’t do that. If you don’t want to be sandboxed, remove the App Sandbox capability in the Signing & Capabilities editor. Setting the value to false can cause weird problems (although that’s unlikely to be causing problems for you here). [quote='830567022, coolaj86, /thread/777577?answerId=830567022#830567022, /profile/coolaj86'] using a uri to open system preferences [/quote] That URL scheme changed recently. I have links to docs for it in Supported URL Schemes. [quote='777577021, coolaj86, /thread/777577, /profile/coolaj86'] I always get permission errno 13 (permission denied). [/quote] macOS has multiple l
Topic: App & System Services SubTopic: Core OS Tags:
Mar ’25