We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am going over the sample code for sandboxing/XPC by Apple and I prefer how they dealt with keeping connection references when needing to call back into the app from the helper tool. Instead of having a single Helper class that keeps an array of connections (which always leads to a question - which array element should I use to report progress), they instead create an object per connection, and bind the connection to each object, see here: https://developer.apple.com/library/archive/samplecode/SandboxingAndNSXPCConnection/Listings/fetch_service_main_m.html#//apple_ref/doc/uid/DTS40012665-fetch_service_main_m-DontLinkElementID_9
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am going over the sample code for sandboxing/XPC by Apple and I prefer how they dealt with keeping connection references when needing to call back into the app from the helper tool. Instead of having a single Helper class that keeps an array of connections (which always leads to a question - which array element should I use to report progress), they instead create an object per connection, and bind the connection to each object, see here:
https://developer.apple.com/library/archive/samplecode/SandboxingAndNSXPCConnection/Listings/fetch_service_main_m.html#//apple_ref/doc/uid/DTS40012665-fetch_service_main_m-DontLinkElementID_9
The text was updated successfully, but these errors were encountered: