Slide 20
Slide 20 text
Method signature
restrictions for XPC calls
Methods should return Void.
Parameters could be:
1. Arithmetic types (int, char, float, double, uint64_t, NSUInteger, and so on)
2. BOOL
3. C strings
4. C structures and arrays containing only the types listed above
5. Objective-C classes, that implement the NSSecureCoding protocol (e.g. NSString or custom
classes).
6. NSArray, NSDictionary and other collections with objects, conforming to NSSecureCoding.
7. Only one block (reply block), that returns Void and receives parameters of types, listed above.