Hi,
Developer Support answered my original question by email telling me that I should ask my question here, because I have reached the wrong Support team...
Here is my question:
I have asked for some help in the forum about SF Symbols, but at last the solution I have found by myself was much more general than the original title of my post suggested.
Now, In order to better share my foundings and better help the community about the subject, I think that a more general title would be appropriate. It's about using Affinity Designer to create custom SF Symbols, where my original title only mentions my difficulties about creating such symbols.
https://developer.apple.com/forums/thread/788403
Can I modify the title of my post by myself (if yes, how?) or should a Forum admin do that for me?
Thank you in advance for your help,
Marc
Developer Forums
RSS for tagAsk questions about how to use the Apple Developer Forums. Discuss forums bugs and enhancements requests that you’ve filed via Feedback Assistant.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hello,
I tried posting about an issue I'm experiencing with HCE, and no matter the text I type, I get error "This post contains sensitive language. Please revise it in order to continue."
Is there any option to resolve it?
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Is this place just for customers of the "developer program" to help each other, or is there any apple employees here able to help, with privileged access?
Seems to me that not, but i prefer to ask anyway, it's not clear to me
Because if there are some employees here, can you please do your job
regards
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
There seems to be some kind of problem with the forum software incorrectly redacting certain words.
It's even censoring Apple employees when they use the word "s i g n a l" in this post, which is now titled, "iOS Network ****** Strength"
So, no, Apple employees are not complaining about iOS Network strength.
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Helllo, I'd like to change my username. Is there a way I can do that? The one I have is one I made by accident and I would prefer not to create an entirely new apple account.
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Hello,
I notice the link on top of this site is incorrect: https://developer.apple.com/forums/tags/sign-in-with-apple-rest-api
Its target (https://developer.apple.com/documentation/sign_in_with_apple/sign_in_with_apple_rest_api) does not exist.
It should probably be https://developer.apple.com/documentation/signinwithapplerestapi
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Tags:
Forums Feedback
Sign in with Apple REST API
It appears that on older posts the code blocks are completely broken. For example https://developer.apple.com/forums/thread/678075 show the code block as a single inline value. Looking at the HTML this is what I see generated
<code class="hljs block shell language-shell">Code Block shell#!/bin/bashrm -rf output/rm -rf simulator_fat/mkdir simulator_fatlibs=( "lib_static" ) #Add for i in "${libs[@]}"do lipo -create arm64_simulator/$i.a x86_64/$i.a -output simulator_fat/$i.a xcodebuild -create-xcframework -library simulator_fat/$i.a -library arm64/$i.a -output output/$i.xcframeworkdone</code>
Obviously newer code blocks seem to be working (as long as the one above is) but it wreaks havoc trying to look at older posts.
Topic:
Developer Tools & Services
SubTopic:
Developer Forums
Hi Apple Development forums,
I am having trouble getting a Wireguard VPN config setup to automatically disconnect on all domain requests other than one specific domain.
I have my .mobileconfig designed as so:
<dict>
<key>Action</key>
<string>EvaluateConnection</string>
<key>ActionParameters</key>
<array>
<dict>
<key>Domains</key>
<array>
<string>service.domainname.com</string>
</array>
<key>DomainAction</key>
<string>ConnectIfNeeded</string>
<key>ProbeURL</key>
<string>https://service.domainname.com/</string>
</dict>
</array>
</dict>
<dict>
<key>Action</key>
<string>Disconnect</string>
<key>DNSDomainMatch</key>
<array>
<string>*.com</string>
<string>*.org</string>
<string>*.net</string>
</array>
</dict>
<dict>
<key>Action</key>
<string>Disconnect</string>
</dict>
</array>
The issue I'm having is regardless of whether I note a *.com or simply have the action Disconnect noted - the VPN stays connected after navigating to https://service.domainname.com.
would anyone have any thoughts on this? Or am I missing something here?