And a bunch of potential memory leaks, and some misbehavior that could occur due to not checking for errors properly. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
7 lines
246 B
Objective-C
7 lines
246 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface NSDictionary (Optional)
|
|
|
|
+ (NSDictionary *_Nonnull)initWithOptionalObjects:(const id _Nullable [_Nullable])objects forKeys:(id<NSCopying> const _Nullable [_Nullable])keys count:(NSUInteger)cnt;
|
|
|
|
@end
|