Search results for

Apple Maps Guides

151,858 results found

Post

Replies

Boosts

Views

Activity

XCode Enhancement Request... The ability to Obfuscate Builds
Hi... It would be nice if Apple / XCode would be so gracious to explore the possibility of providing the ability to include: Code scrambling / renaming Control-flow obfuscation String encryption Anti-debugging Anti-hooking Jailbreak detection App integrity checks Runtime tamper detection That way, we could eliminate the need to settle for third-party software. Who do we have to bribe to submit such a request and entertain such an idea?
1
0
98
2w
Why won't my AutoFill Credential Provider show up in the context menu of a generic textfield?
I noticed, that even though my AutoFill Credential Provider Extension works with Safari for both Passwords and Passkeys, it doesn't work in context menus inside arbitrary textfields, meanwhile the same is true for the Apple Passwords app. This is a great hit to AutoFill productivity, as my extension is unable to fill textfields by just going to the context menu and clicking AutoFill > Passwords.. Is this a feature only available to Apple via private APIs, or is this something I can interface with? I checked and the Passwords app does use some undocumented but non-private entitlements: [Key] com.apple.authentication-services.access-credential-identities [Value] [Bool] true I also checked the responsible executable for some hints (AutoFillPanelService) however found nothing that would lead me to believe this is a public extension point. Another idea I had was trying to use a macOS Service for this, however Services in the General category won't show up in any context menu, only in the Appli
0
0
77
2w
Communication problems with Apple
Hello, About 7-8 months ago, I received an e-mail stating that my apple developer account would be deleted after 30 days, and my account was deleted after 30 days. I tried to contact many times, I got hopeful each time, but the Apple team never gave a full explanation. They always responded saying they would be interested, but it never came to fruition. In fact, I was most excited when I received the following e-mail: Hello Oğuzcan, My name is Joel, and I’m a senior Advisor with Developer Support. Your case has been given to me for further handling, and I’m happy to follow up with you today. I understand that you have initiated a conversation in our developer forums. Please, provide us more information and show us the email that you received, so we will assist your better. Please, reply to the received email for obtaining more information as the appropriate team will be able to assist you better. Please, reply to this email if you have further questions. Have a great day. Best Regards, Joel
0
0
55
2w
URGENT: App rejected for "manual check-in" requirement not in Guidelines 5.1.2 — built feature anyway, still waiting (APP LAUNCH, BANGKOK dependency
Our solo traveler safety app has been rejected multiple times; for random reasons. Latest rejection demands manual check-in each time for location display — this requirement doesn't appear in published Guidelines 5.1.2 or 5.1.5. BUT!! We built the feature anyway: users invisible by default, must tap Check In to appear on map, auto-expires 24hrs. Submitted video proof, screenshots, detailed notes. Age rating set to 18+. (its not even adult but we did it anyway as to match our own policy) Comparable apps (Couchsurfing, Life360, Snap Map) approved without this requirement. Time-critical: investor meetings Bangkok Dec 11, flight Dec 10 11pm GMT - 15 months development. UK registered company. Has anyone dealt with unpublished requirements being applied inconsistently? Any advice appreciated - I cant get through to dev/app review team or senior advisors. And lovely call handlers in cork tried his. best but cannot do anything - ive not slept for near 24 hours due to unknown reasons - some minor mak
3
0
80
2w
Reply to XCFramework with Common Third-Party Dependencies Causing Duplicate Symbol Conflicts
[quote='868615022, Charita, /thread/805901?answerId=868615022#868615022, /profile/Charita'] It would be helpful if you could suggest a way in which this can be handled at my end. [/quote] I can suggest various options, but there are no good options here. I outlined the reasons for that in my previous post. Ignoring all the build-time stuff for the moment, let’s focus purely on the runtime aspects. You only want one version of this vendor’s code in the client app’s process. Where should that code be? If you statically link it in your framework then the client can’t access it in the normal way. If the client statically links it into their app then your framework can’t easily access it. There’s no standalone framework available from the vendor, so that’s not an option. I see three potential options: You statically link the code into your framework and provide the necessary infrastructure for the client to access it from there. You create a standalone framework from this code, ship it to your clients, and have bo
2w
Reply to Certificate revocation check with SecPolicyCreateRevocation/SecTrustEvaluateWithError does not work
[quote='868450022, DTS Engineer, /thread/808875?answerId=868450022#868450022'] This gels with my understanding of how things should … work [/quote] Actually, that understanding was wrong. It seems that things only end up on Apple’s ‘naughty’ list if they’re revoked for the right (well, wrong) reasons, specifically, for compromised keys [1]. So, to test this stuff you need to check a certificate that the system really thinks is revoked. A good example is this: https://global-root-ca-revoked.chain-demos.digicert.com/ Using that I crafted a small test program that gets a server’s certificate chain and checks it for revocation. The code is at the end of this post. When I run this on macOS 15.7.1, I see this: will run task, url: https://example.com challenge NSURLAuthenticationMethodServerTrust will check chain did check chain, success: true did run task, status: 200, bytes: 513 will run task, url: https://revoked.badssl.com challenge NSURLAuthenticationMethodServerTrust will check chain did check chain,
Topic: Privacy & Security SubTopic: General Tags:
2w
Apple Pay on Web scan-to-pay, the service is unavailable
I integrated Apple Pay on the web following the documentation, and verified that the payment works successfully in the sandbox environment using Safari on iOS and Mac. Later, I launched the Apple Pay payment code on a third-party web page that supports Apple Pay, and scanned the code with the camera of an eligible iOS device. The camera then displayed the Apple Pay button; after tapping it, a brief pop-up message saying ‘Service Unavailable’ appeared, and then it closed automatically. How can I troubleshoot and resolve this issue?
Topic: Safari & Web SubTopic: General
0
0
160
2w
Reply to Background fetch when app is forced quit
[quote='868602022, ygbykov, /thread/808088?answerId=868602022#868602022, /profile/ygbykov'] Apple may want to reconsider how it interprets users force-quitting apps. [/quote] If you want to get your “two cents” in front of the folks who have the power to enact change, I suggest you put them in an enhancement request. One of the reasons why these behaviours are not documented is that Apple reserves the right to change them. This has happened in the past, and it’s not hard to imagine it happening again in the future. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to Xcode and Reading documents from a URL connection.
[quote='868482022, Apple_Fox, /thread/807599?answerId=868482022#868482022, /profile/Apple_Fox'] Is SharePoint a server one that would cause issues with downloading docx files directly? [/quote] I expect that’ll depend on how the server is configured. I recommend that you write a small test project to fetch the URL and see what you get back. Usually this yields one of three results: The request succeeds with a 2xx status code and returns the right data. The request fails with a 4xx status code, indicating that you have to log in. In this case you may be able to gets things working using the authentication challenge mechanism in URLSession. The request success with a 2xx status code but the actual data is a login page. This is hard to deal with. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
Reply to URLRequest(url:cachePolicy:timeoutInterval:) started to crash in iOS 26
[quote='868455022, bims, /thread/806594?answerId=868455022#868455022, /profile/bims'] I already feel bad asking you again [/quote] No worries. It gives me a good excuse to brush up on my debugging skills (-: [quote='868455022, bims, /thread/806594?answerId=868455022#868455022, /profile/bims'] It turns out that MTE and Malloc Stack Logging cannot be enabled at the same time. [/quote] Bah. This isn’t super surprising, and it’s the sort of thing I’d know if I had an iPhone 17 to play with. It’s definitely time to ping my boss about that. [quote='868455022, bims, /thread/806594?answerId=868455022#868455022, /profile/bims'] Unfortunately, I didn't really understand where/what to look for in Xcode. [/quote] OK. Lemme run you through a non-MTE example: Using Xcode 26.1 on macOS 15.7.1, I created an iOS app with two buttons wired up to these two methods: var memory: UnsafeMutableRawPointer? = nil func mallocAction() { self.memory = malloc(1024) } func freeAction() { free(self.memory) } In the scheme editor, I enabled
2w
Reply to Can I Use Xcode and iPadOS 18? (and RealityView)
[quote='868407022, Mohsenomar, /thread/773903?answerId=868407022#868407022, /profile/Mohsenomar'] i have iPad generation 10 but I updated ipados 26.2 I need get back ipados 18 now… [/quote] Once you’ve updated to a new version of iOS, there’s no supported way to roll back to a previous version. The only exception to this rule is if the new version is a beta seed, in which case you can roll back to the previous public release. For advice on how to do that, see Apple Beta > FAQ > Support > How do I leave the Apple Beta Software Programme? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
2w
App Rejected Under Guideline 5.0 (Sanctions) – Anyone Faced This?
Hi everyone, I’m trying to publish my app, but it was rejected with the following message: Guideline 5.0 – Legal Apple must comply with U.S. laws. Under U.S. sanctions regulations and export controls, Apple cannot do business with certain apps or developers connected to U.S. embargoed countries or regions. We have recently identified that the app is subject to U.S. sanctions regulations or export controls. Therefore, we are unable to approve the app at this time. This area of law is complex and constantly changing, and should changes be made to U.S. law in the future you can resubmit the app. You can contact the U.S. Department of the Treasury should you have questions. I have already opened a support ticket with Apple, but I haven’t received a response yet. Has anyone here experienced a similar issue? If so, how did you resolve it, or is there anything specific I should do or check on my side? Thanks in advance for any help or advice.
1
0
47
2w