Search results for

file uri scheme

79,853 results found

Post

Replies

Boosts

Views

Activity

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
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
Change Sign In With Apple button style based on current color scheme
I'm having some issues with SwiftUI's SignInWithAppleButton's signInWithAppleButtonStyle. I am trying to change the color of the button based on the user's current scheme or if it changes. This is iOS 14 and SwiftUI: @Environment(.colorScheme) var currentScheme @State var appleButtonWhite = false VStack{ SignInWithAppleButton( tttttttt.signUp, ttttttttonRequest: { request inttttttt ttttttttttrequest.requestedScopes = [.fullName, .email] tttttttt}, ttttttttonCompletion: { result in ttttttttttswitch result { ttttttttttcase .success (let authResults): ttttttttttttprint(Authorization successful.) ttt ttttttttttcase .failure (let error): ttttttttttttprint(Authorization failed: + error.localizedDescription) tttttttttt} tttttttt} tttttt) tttttt.frame(minWidth: 0, maxWidth: .infinity) tttttt.signInWithAppleButtonStyle(appleButtonWhite ? .white : .black) } .onChange(of: currentScheme, perform: { (scheme) in ttttif scheme == .light tttt{ ttttttappleButtonWhite = false tttt} ttttelse tttt{ tt
2
0
2.3k
Dec ’20
How to open Apple Maps focusing on the services tab ? (URL scheme)
Hi,As explained into this StackOverFlow topic (https://stackoverflow.com/questions/54888856/how-to-open-apple-maps-focusing-on-the-services-tab-url-scheme), I would like to open Apple Maps from my application by using an universal link and to focus the user's view directly on the services tab.After doing a few searches, I thought there was no way to do so and the response I got on StackOverFlow confirmed that.Is it planned to allow the developer to do such thing in the future ? Is there a link I could ask such feature to Apple developers ?I thank you in advance for your time and your response !Best regards,
2
0
658
Feb ’19
Reply to invalid_client for authorization_code
Just wanted to add a note here that I was able to resolve my issue. The issue was not with the client secret but with the TTL for my secret which expired way too soon and the redirect URI set for getting an auth token not being whitelisted in Apple developer services dashboard for apple sign in.
Topic: App & System Services SubTopic: General Tags:
Jan ’20
Reply to DHCP Option 114
Did not have information nor solution but confirmed this is still persistent on ios 16. Android phones comply to rfc as they should but ios devices did not send any request to uri that mentioned in option 114. Also I did not observed any requests even after reconnecting to same network countless times.
Topic: App & System Services SubTopic: Hardware Tags:
Jan ’23
Reply to XCODE SwiftUI Preview
My suggestion then would be to: create a framework to host the View and PreviewProviders create a dummy app to be used for previews have both your real app and the dummy app link the framework when attempting to use previews select the dummy app as your active scheme I believe that should cause the previews system to use the dummy app as the context to render the previews. If that does not work, then another (perhaps easier?) workaround is to skip the framework part and just include the file with the View in both apps and again select the dummy app as the active scheme before attempting to preview.
Oct ’21
Reply to Emoji Ranger not showing in Add Widget list
It sounds like your normal process is to build and run the App scheme, then once the app is on the simulator, you're enabling the app jiggling, then tapping the + button. The response to your question was, don't build the app scheme, build the widget kit extensions scheme. You can change your scheme by tapping the pulldown in Xcode that is next to the large play button and square stop button on the top left of your Xcode window. In the emoji ranger app it shows either the icon for the app which is like a panda on an orange background or you can select the 2 widget options which don't have an app icon. If you see the panda on your Xcode window you're building the app scheme, not the extension scheme.
Topic: UI Frameworks SubTopic: General Tags:
Jun ’20