Is it better to
- Create an NSXPCConnection, keep it around, and create proxies using that as needed, or
- Create an NSXPCConnection, create a proxy off of it, and then close the connection when done?
Is it better to
Option 1 is best practice.
Share and Enjoy
—
Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"
Ok, that's what I thought. 😄 (And what I am doing.)