On Mountain Lion, using Xcode 4.6.2, the following code
for (NSBundle *aBundle in [NSBundle allFrameworks]) NSLog(@"%@", [aBundle bundlePath]);
logs EVERYTHING, I mean every framework installed in the system (so not just the app's ones, as stated in NSBundle documentation).
Can this be normal?