Post

Replies

Boosts

Views

Activity

Reply to Why is sandbox not blocking this code?
From App Sandbox Design Guide - https://developer.apple.com/library/archive/documentation/Security/Conceptual/AppSandboxDesignGuide/AppSandboxInDepth/AppSandboxInDepth.html, it says the app has access to the following locations Temporary directories, command-line tool directories, and specific world-readable locations. A sandboxed app has varying degrees of access to files in certain other well-defined locations So I'm guessing the access I'm seeing is encapsulated by that?
Feb ’21
Reply to NE SystemExtension upgrade deadlock (OSSystemExtensionErrorDomain 1)
I've found myself in this same situation. I've tried uninstalling with SIP turned off. I've also tried deactivationRequestForExtension The logs I'm getting for systextd (xxxx is placeholder for my real extension) are language request contains  authorizationref extension xxxx advancing from activated_waiting_to_upgrade-terminating_for_uninstall state transition not allowed, crashing... sysextd restarted At this point I don't know what to do? I can't activate or deactivate my extension...
Apr ’21
Reply to swiftui zstack alignment not working
Mark's answer is correct for, but just to make it clearer. Like the question, I was using ZStack{ // Child content } .frame(width: 200, height: 500, alignment: .topLeading) But this doesn't work, presumably because the frame is adding a parent view to the ZStack, and the alignment is not being added directly to the ZStack itself. By taking the following approach of passing the alignment directly to the ZStack at initialisation, I was able to get the expected results with all children position top left. ZStack(alignment: .topLeading) { // Child content } .frame(width: 200, height: 500, alignment: .topLeading)
Jun ’21