Obter ícone para outro aplicativo no Objective-C

Como faço para obter o ícone de outro aplicativo usando o Objective-C?

Eu tentei isso até agora, no entanto, apenas retornanull:

NSURL *path = [NSURL URLWithString:@"/Applications/Calculator.app"];

NSLog(@"%@", path);

NSImage *image = (__bridge NSImage *)(QLThumbnailImageCreate(kCFAllocatorDefault, (__bridge CFURLRef)(path), CGSizeMake(100, 100), (__bridge CFDictionaryRef)(@{(NSString *)kQLThumbnailOptionIconModeKey: @NO})));

NSLog(@"%@", image);

questionAnswers(3)

yourAnswerToTheQuestion