Posts

Post not yet marked as solved
0 Replies
383 Views
Hello, I'm interested to know peoples experiences here. I've got an M1 Mac and I'd love to install the Ventura beta on an external drive. Is this possible? Has anybody had any luck? I haven't looked into this issue since the Monterey betas. Apple decision to make installing OS releases on external drives difficult really hampers developers ability to test. Has anything been resolved/improved? Cheers, Ross.
Posted Last updated
.
Post not yet marked as solved
3 Replies
550 Views
Hello,I need to rebuild an app targeting the macOS 10.7 SDK. To do this I thought I'd install 10.8.5 into a VM and then install Xcode 5.x. Sounded simple and easy to setup to me.When I open Xcode 5 (in the VM) it demands to "Install additional required components.". This process fails with:An SSL error has occurred and a secure connection to the server cannot be made.The site it is attempting to connect to is: devimages.apple.com.edgekey.netI've done a little digging and found that (1) the certificate isn't trusted on the local end of the connection and (2, I think) the server seems to insist on a version of TLS that isn't supported on the client side. The certificate issue is fixable but the TLS version seems like a deal breaker to me.So does anyone know how I could convince Xcode not to "install additional requirted components"?Are these components installable via an external package?Does anyone know how to use the 10.7 SDK on newer versions of Xcode. I'm not even sure when it stopped being supported.Any guidence would be greatly appreciated.Thanks.
Posted Last updated
.
Post not yet marked as solved
1 Replies
1.7k Views
Hello,Any guidance as to how to make a default button on macOS?struct ContentView: View { var body: some View { HStack() { Button(action: {print("OK")}) { Text("OK") } Button(action: {print("Cancel")}) { Text("Cancel") } }.padding() }}If I want the OK button to be the default and given the appropriate border?Thanks!
Posted Last updated
.