Search results for

“translate scheme”

6,658 results found

Post

Replies

Boosts

Views

Activity

Reply to Method to Sanitize a Single Path Component?
It's interesting you mention NSSavePanel because it looks like it could be used as a (very expensive) sanitizer. Setting -directoryURL and -nameFieldStringValue will compose URLs with the slash/colon translation, but it looks like colon/dash is only done on keystroke; colons set in the field programmatically are translated back to slashes on display. At the very least I could use it in unit tests for my sanitizer.For compatibility with other filesystems I've been using the following snippet to strip prohibited characters:NSUInteger b[] = {0x03ff700100000000, 0x07fffffe87fffffe}; return [NSCharacterSet characterSetWithBitmapRepresentation:[NSData dataWithBytesNoCopy:b length:sizeof(b) freeWhenDone:false]];
Topic: App & System Services SubTopic: Core OS Tags:
Mar ’19
Reply to App Store Connect
But for some reason, I cannot select a build - Why not? What is stopping you? What happens when you click the plus button and the popup appears with the various builds listed? You're telling us you cannot select a build for some reason, but you don't tell us what's actually happening, so we can't actually help you. Have you added the translations? I think it requires at least one translation, even if it's just English. I think that's in the App Store Localizations bit. Take a look at the Help pages: https://developer.apple.com/help/app-store-connect/ There is a section on Managing Subscriptions.
Apr ’25
Launching MacOS app via Url Scheme
I'm looking for answer or documentation on gatekeeper and launching a MacOS app via a url scheme/custom protocol. Our application is delivered via a zip file downloaded from the web. We utilize a url scheme. The act of extracting the app from the zip registers the url scheme with the OS. From previous research/testing we found we had to break the gatekeeper lock (have the user move the app from the downloaded location) to ensure that the url is honored on first launch of the application. To ensure user compliance, we added a check to make sure that the lock has been removed by looking at the quarantine attribute. This flow is not ideal. I am looking for alternatives and was previously under the impression that if we were to move to a DMG then that would provide the user a better user experience for moving it. However, now that I am getting around to looking into it, I am seeing some implied statements that this is not the case and that the quarantine bit will just be moved from the
Topic: Safari & Web SubTopic: General
2
0
332
Sep ’25
Reply to Placing Metal 3d objects on detected arKit planes
Thank you for the response. So I took out that code here func session(_ session: ARSession, didAdd anchors: [ARAnchor]) { print(anchors) } and when it detects this dog bed as a plane it renders my model but I'm inside R2. hahah. So on the apple example for arkit onTap I did the appropriate translations and scales as my model was a lot bigger than the little cube that gets rendered on the example code. So I was trying to do the same with the plane anchor in the above function. However, it seems it is not rendering it on the plane quite right. @objc func handleTap(gestureRecognize: UITapGestureRecognizer) { // Create anchor using the camera's current position if let currentFrame = session.currentFrame { // Create a transform with a translation of 0.2 meters in front of the camera var translation = matrix_identity_float4x4 var scale = matrix_identity_float4x4 translation.columns.3.z = -2 scale.columns.0.x = 0.1 scale.columns.1.y = 0.1 scale.columns.2.z = 0.1 let rotationY = float4x4().
Topic: Graphics & Games SubTopic: General Tags:
Aug ’21
Reply to confirmation dialog
Could you show the complete code ? What is the problem ? what are the first and third buttons ? They are disabled. Do you need to enable them ? If you need, explain your problem in detail with your mother language, we shall translate it.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Mar ’23
trusting the team_id codesign naming scheme?
I have a question about the amount of trust I should have in the team_id for an executable. I've been looking at the signing_id and team_id values in Apple's endpoint es_process_t, and almost all code follows the reverse naming scheme for their team_id. They have names like: com.getdropbox.dropbox com.microsoft.teams.helper com.apple.mdworker_shared com.apple.spctl But Google (at least) violates this reverse DNS pattern when signing many of their binaries. They have team IDs such as ksfetch GoogleSoftwareUpdateDaemon crashpad_handler Should I not trust the TLD (e.g., com.apple or com.microsoft) for the team ID? For example, could Google (or a malicious organization) sign their binary com.microsoft.ksfetch making me think it came from Microsoft?
3
0
1.5k
Apr ’23
WKWebView unable to load custom URL scheme with HTTPS
Hello, I would like to load local resources (images and JSON) in a WKWebView by defining a custom URL scheme and using WKURLSchemeHandler. I have a WKWebView that loads web content that will do an HTTP GET request on the URL scheme, which the WKWebView catches and returns an HTTP response along with the resource (in JSON) via my handler.This setup works when the website uses http, but fails when using https with the following error:[blocked] The page at [web page with https] was not allowed to display insecure content from [custom url scheme].I observed the error using Safari's development tool for viewing the loaded web content in a WKWebView.Safari seems to be blocking mixed content when a webpage is served over https. Is there a way to resolve this issue?
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
2.5k
Apr ’18
Reply to I have upgrade from xcode 7.3.2 to 8.3.2 now nothing work
Converting from 7.3 to 8.3 logically causes a lot of changes, and converter cannot translate everything.Have you a lot of errors in each code ? What type of error ?You will have to edit one by one.
Replies
Boosts
Views
Activity
May ’17
Reply to Method to Sanitize a Single Path Component?
It's interesting you mention NSSavePanel because it looks like it could be used as a (very expensive) sanitizer. Setting -directoryURL and -nameFieldStringValue will compose URLs with the slash/colon translation, but it looks like colon/dash is only done on keystroke; colons set in the field programmatically are translated back to slashes on display. At the very least I could use it in unit tests for my sanitizer.For compatibility with other filesystems I've been using the following snippet to strip prohibited characters:NSUInteger b[] = {0x03ff700100000000, 0x07fffffe87fffffe}; return [NSCharacterSet characterSetWithBitmapRepresentation:[NSData dataWithBytesNoCopy:b length:sizeof(b) freeWhenDone:false]];
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Mar ’19
Reply to App Store Connect
But for some reason, I cannot select a build - Why not? What is stopping you? What happens when you click the plus button and the popup appears with the various builds listed? You're telling us you cannot select a build for some reason, but you don't tell us what's actually happening, so we can't actually help you. Have you added the translations? I think it requires at least one translation, even if it's just English. I think that's in the App Store Localizations bit. Take a look at the Help pages: https://developer.apple.com/help/app-store-connect/ There is a section on Managing Subscriptions.
Replies
Boosts
Views
Activity
Apr ’25
Open Health app using url scheme
I had tried to open Health app from my app using url scheme health. It was working with iOS 10 beta simulator but whnw i tried with real device with iOS 10 beta it's not working. Is there any other way to open a health app from other apps?
Replies
2
Boosts
0
Views
6.7k
Activity
Aug ’16
Launching MacOS app via Url Scheme
I'm looking for answer or documentation on gatekeeper and launching a MacOS app via a url scheme/custom protocol. Our application is delivered via a zip file downloaded from the web. We utilize a url scheme. The act of extracting the app from the zip registers the url scheme with the OS. From previous research/testing we found we had to break the gatekeeper lock (have the user move the app from the downloaded location) to ensure that the url is honored on first launch of the application. To ensure user compliance, we added a check to make sure that the lock has been removed by looking at the quarantine attribute. This flow is not ideal. I am looking for alternatives and was previously under the impression that if we were to move to a DMG then that would provide the user a better user experience for moving it. However, now that I am getting around to looking into it, I am seeing some implied statements that this is not the case and that the quarantine bit will just be moved from the
Topic: Safari & Web SubTopic: General
Replies
2
Boosts
0
Views
332
Activity
Sep ’25
Reply to Placing Metal 3d objects on detected arKit planes
Thank you for the response. So I took out that code here func session(_ session: ARSession, didAdd anchors: [ARAnchor]) { print(anchors) } and when it detects this dog bed as a plane it renders my model but I'm inside R2. hahah. So on the apple example for arkit onTap I did the appropriate translations and scales as my model was a lot bigger than the little cube that gets rendered on the example code. So I was trying to do the same with the plane anchor in the above function. However, it seems it is not rendering it on the plane quite right. @objc func handleTap(gestureRecognize: UITapGestureRecognizer) { // Create anchor using the camera's current position if let currentFrame = session.currentFrame { // Create a transform with a translation of 0.2 meters in front of the camera var translation = matrix_identity_float4x4 var scale = matrix_identity_float4x4 translation.columns.3.z = -2 scale.columns.0.x = 0.1 scale.columns.1.y = 0.1 scale.columns.2.z = 0.1 let rotationY = float4x4().
Topic: Graphics & Games SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’21
Reply to Apple TV Example Code in Obj-C?
Currently all of the tvOS code samples we have released are in Swift. But as bogo-sts suggested, the concepts are entirely translatable between the languages as you interact with the same APIs either way.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’15
Reply to confirmation dialog
Could you show the complete code ? What is the problem ? what are the first and third buttons ? They are disabled. Do you need to enable them ? If you need, explain your problem in detail with your mother language, we shall translate it.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Mar ’23
Reply to URLRequest(url:cachePolicy:timeoutInterval:) started to crash in iOS 26
@DTS Engineer it seems like .crash-files gets translated into text-file... so I can no longer attach it. I will try to upload it and share a link instead...
Replies
Boosts
Views
Activity
Nov ’25
Xcode Cloud: A scheme named "x" does not exist in x.xcodeproj
I have checked that my scheme is shared and I do in fact have the scheme in my xcode project. But whenever I try to run Xcode cloud, it fails with the message that A scheme named 'MyAppScheme' does not exist in MyAppProject.xcodeproj Any tips on what I could be doing wrong?
Replies
5
Boosts
0
Views
2.3k
Activity
Aug ’23
trusting the team_id codesign naming scheme?
I have a question about the amount of trust I should have in the team_id for an executable. I've been looking at the signing_id and team_id values in Apple's endpoint es_process_t, and almost all code follows the reverse naming scheme for their team_id. They have names like: com.getdropbox.dropbox com.microsoft.teams.helper com.apple.mdworker_shared com.apple.spctl But Google (at least) violates this reverse DNS pattern when signing many of their binaries. They have team IDs such as ksfetch GoogleSoftwareUpdateDaemon crashpad_handler Should I not trust the TLD (e.g., com.apple or com.microsoft) for the team ID? For example, could Google (or a malicious organization) sign their binary com.microsoft.ksfetch making me think it came from Microsoft?
Replies
3
Boosts
0
Views
1.5k
Activity
Apr ’23
WKWebView unable to load custom URL scheme with HTTPS
Hello, I would like to load local resources (images and JSON) in a WKWebView by defining a custom URL scheme and using WKURLSchemeHandler. I have a WKWebView that loads web content that will do an HTTP GET request on the URL scheme, which the WKWebView catches and returns an HTTP response along with the resource (in JSON) via my handler.This setup works when the website uses http, but fails when using https with the following error:[blocked] The page at [web page with https] was not allowed to display insecure content from [custom url scheme].I observed the error using Safari's development tool for viewing the loaded web content in a WKWebView.Safari seems to be blocking mixed content when a webpage is served over https. Is there a way to resolve this issue?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
2.5k
Activity
Apr ’18
Reply to XLIFF makes no sense
7.2Did you try what I said? Like I'm saying, I'm pretty sure it's because the development language is the same as what I'm trying to translate to, and so it gets confused what is going on.
Replies
Boosts
Views
Activity
Jan ’16
Reply to To validate Xcode: "in sealed resource is missing or invalid"
Excuse me but I am a novice and I do not speak your language should I use Google Translate to write. I have not figured out if I made a mistake in the test or verisione is invalid. Excuse my English by caveman
Replies
Boosts
Views
Activity
Sep ’15
Reply to Xcode 11.3: can't select deployment target 13.3
Hello, were able to understand what the problem is ? We tried on several iMac 10.15.2 and MacBook 10.15.2 and still no ios 13.3. Even when creating a new project. Sorry for my English. Translation by google.
Replies
Boosts
Views
Activity
Dec ’19