How to associate nullability keywords with multi-level pointer types in following declaration for (NSError **)error
?
- (void)loadSessionForUserId:(nonnull NSString *)userId error:(NSError **)error {
...
}
I want to make error nullable and get rid of “Pointer is missing a nullability type specifier (__nonnull or __nullable)”
Error variant with Xcode11: nullability keyword 'nullable' cannot be applied to multi-level pointer type 'NSError *__autoreleasing _Nullable *'