Post

Replies

Boosts

Views

Activity

Reply to MACMAIL V10 is considered as an absolute nightmare - need to find a way to revert mail client to V3 in all future updates
Two things here: These are the Developer Forums where third-party developers get together to figure out issues in their code, or to ask how to implement something. While there are one or two actual Apple employees here, they're not here to handle product issues like yours. Secondly, please don't put random tags on your posts. Your 'complaint' has nothing to do with Foundation or APFs, and when others search for those tags they'll get your unrelated post. Please think about what you're doing before you do it. Try the Apple Support Forums instead. Thanks.
Topic: App & System Services SubTopic: Hardware Tags:
May ’24
Reply to Swift: Can I change views without clicking on a link.
Okay, why do you need a NavigationStack? What's the layout of your app? I have an app that does this check in the main scene: var body: some Scene { WindowGroup { if(UIDevice.current.userInterfaceIdiom == .pad) { TabletView() } else { PhoneView() } } So, if the device in use is an iPad, the TabletView is shown. Otherwise, the PhoneView is shown. You can tailor this for your own needs. For example, if you want to do this in your ContentView you could use something like this: struct ContentView: View { var body: some View { #if os(iOS) IOSView() #elseif os(OSX) OSXView() #else FallbackView() #endif } } Note that I've removed your myOS var altogether since you don't need it if you do the above.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
May ’24
Reply to SF Symbol
I've had a look and can't find it either, but it might not be an SF Symbol at all. It may just be an icon they've created. If you want to create it yourself, start with circle.dotted, fill in one side of the circle, and add a semicircle.
Topic: Design SubTopic: General Tags:
May ’24
Reply to Cant able to set lock screen independent of Wallpaper in Mac
Looks like they removed that functionality. This page seems to have some info on how to achieve it: https://osxdaily.com/2023/02/27/how-to-change-the-lock-screen-wallpaper-on-macos-ventura/ But, as an aside, this is really a product support question, not really something for us third-party developers to answer. Your choice of tags for your post is also wrong. It has nothing to do with "Device Management" and "Managed Settings". Your question is better asked at the Apple Support Forums. Thanks.
Topic: App & System Services SubTopic: Core OS Tags:
May ’24
Reply to Account holder apple id disabled. How to renew the membership?
Why can't the original account holder login anymore? What was the reason that Support gave you for not reactivating the Apple ID? (This suggests the Apple ID was deactivated; why was it deactivated?) Honestly, you haven't given anywhere near the amount of information required. Besides that, we can't help you because e aren't the Support team. You need to figure out how to reactivate the Apple ID yourself; we have no control over that.
Jun ’24