Search results for

file uri scheme

78,619 results found

Post

Replies

Boosts

Views

Activity

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
Reply to canOpenURL returned an incorrect result in iOS 15 run in Xcode13
I filed a bug report for FB9447186. Thanks. Reading your bug report it seems that you’ve determined that there’s a threshold of 50 URL schemes. Is that right? Honestly, I don’t know what’s up with that. My suggestion is that you open a DTS tech support incident and talk to DTS’s expert in this field. At a minimum, we should be able to find out whether this 50 URL scheme limit is deliberate or not. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’21
Reply to multi language swiftUI app not working
From the screenshot, it looks like you manually created .lproj groups in Xcode. Instead, can you try keeping just one Localizable.strings file and then using the Localizations inspector on the right to vary the file for each language? Xcode will automatically create .lproj folders for you on disk and in the built application. You can then use the Options tab of the scheme editor to run the application in Chinese, Simplified.
Aug ’22
Reply to How to use safaridriver from safari technology preview in selenium grid
We are using: Dictionary<string, object> remoteSafariOptions = new Dictionary<string, object>(); remoteSafariOptions[technologyPreview] = true; safariOptions = new SafariOptions(); safariOptions.AddAdditionalCapability(safari.options, remoteSafariOptions); browser = new RemoteWebDriver(new Uri(seleniumRemoteGridUrl), safariOptions.ToCapabilities());which works fine.
Topic: Safari & Web SubTopic: General Tags:
Sep ’17
How to format the start and end time in iOS URL schemes in Shortcuts
I created a shortcut 'Add New Event' on my iPad. I need to automate the start and end time, so I use the iOS shortcuts URL schemes. I asign date variable to the start time and end time. Here's the URL I wrote for a start time 2024-01-01-06:00:00 and end time 2024-01-01-07:00:00 shortcuts://run-shortcut?name=Addevent&input=2024-01-01T06:00:00 I can't figure out how to properly write the end time so the URL will get me open the iOS calendar to create an event with a specified start and end time. I wanted to attach an image of the shortcut I created on iPad, but it won't allow me. You can view the image here. https://drive.google.com/file/d/1PIVAjg9Cta2SQr7eUMEpBSrZJpORVaMK/view?usp=sharing note: I actually just need the end time an hour later than the start time. so if there's a better solution, please feel free to comment.
0
0
577
Jun ’23
Url-scheme is not working
Hi everyone! Tried to find out the solution by myself, but I failed =) Problem: I have one app on both iPhones, but the url_scheme works differently on them. 1 phone: Click at web link to the app – opens app 2 phone: click at web link to the app – opens web version. Tried to find info in logs, but didn't find answers there. Associations works correctly, cause on other phones everything works fine. Can you please help me to find out the reason? Maybe some info about what I need to search in logs or maybe you've faced the same problem.
1
0
2k
Sep ’23
Reply to Using CoreData entity in SwiftUI view
Thank you, so now I have something like this var meeting: Meeting But the PreviewProvider now says it is missing an argument for the parameter 'meetings'. How do I initialize some dummy data for the preview if the data is in CoreData? I have 'meetingName' of type string, 'meetingLink' of type URI, and 'meetingTime' of type Date. Thank you!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Feb ’21
Xcode schemes and targets messed up
I was having trouble with Xcode and it was telling me that multiple versions of derived data were being produced and I could not build the project. I started to mess around with some build settings and finally got the issue fixed and the project built. However, now when I run the project on my iPhone, my app icon does not appear and the app crashed immediately with the error: Could not find a storyboard named 'Main' in bundle NSBundleI realized that something was wrong with my project. Something looks different on the sidebar now, and when I click on my actual Xcode project, it does not show me the general information like normal.Instead, it shows me the general information in under the Target Hostend instead of the project like it usually would. Also, my Assets.xcassets, my Main.storyboard, and any of my other files don't have the Target Membership checkbox checked for my target, and I cannot enable it because it is grayed out.What is happening with my project and how can I fix this? I'm really stuc
3
0
8.7k
Sep ’19
AppleWatch send parameter WatchOS App from Url Scheme or Shortcut
I am currently developing an app for Apple Watch. I want to pass a parameter value while calling my Apple Watch app through a shortcut on the Apple Watch. So I thought of url scheme but. I couldn't get this to work on the Apple Watch. So I'm looking for another way. How to create a shortcut that can be executed while passing parameter values to the Apple Watch, In the watchos app, can I call the desired function by receiving the parameter value?
0
0
660
Apr ’23
Sample Partition Scheme driver kext can't load at boot time.
We are implementing a Sample Partition Scheme driver. this is the info.plist IOKitPersonalities SamplePartitionScheme IOKitDebug 0 IOProbeScore 80000 .... IOProviderClass IOMedia IOPropertyMatch Whole our driver match a whole disk IOMedia, If it's our disk, perform read/write on this disk. When we test our driver in macOS12. if the IOMedia is a blank RAW disk, our driver will be loaded at boot time. if the IOMedia has partitions, system partition scheme driver will be loaded at boot time. Pluging in a GUID partition disk on a booted Mac always load our kext. how can our driver match GUID partition disks and load at boot time?
1
0
772
Jan ’22
Reply to What is, and how would I create a URL scheme for use in an iOS API?
So would something like chiromaster-url-scheme be appropriate?It’s a good start. You definitely want to include the name of your product, which will prevent folks from accidentally reusing the scheme. However, adding -url-scheme is pointless because that’s implicit in the context. Beyond that I agree with Claude31 here: You should see if Square has specific guidance on this topic.WARNING iOS provides no mechanism to ‘vet’ URL schemes. You might declare a custom scheme so that Square can return to your app, but any other app might open a URL with that scheme. If you encode any data in your URL, you must securely parse that data. Failure to do so could result in a malicious app doing bad things.Note URL schemes are officially registered by IANA, although the vast majority of schemes used by developers are not )-:Share and Enjoy — Quinn “The Eskimo!” Apple Developer Relations, Developer Technical Support, Core OS/Hardware let myEmail = eskim
Topic: Programming Languages SubTopic: Swift Tags:
Mar ’18
Reply to YouTube play video using app?
tvOS does support Custom URL Schemes, but support for a given scheme is up to the individual developer creating the app that will host said scheme. You will need to get in touch with the developer of the app you wish to interact with to determine if they will support the use case on tvOS.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’15