Skip to content

Instantly share code, notes, and snippets.

@lapfelix
Created January 29, 2016 03:45
Show Gist options
  • Save lapfelix/e4dd1c5b39bd507d5b58 to your computer and use it in GitHub Desktop.
Save lapfelix/e4dd1c5b39bd507d5b58 to your computer and use it in GitHub Desktop.
List all iOS private frameworks
NSDirectoryEnumerator *enumerator = [[NSFileManager defaultManager] enumeratorAtPath:@"/System/Library/PrivateFrameworks/"];
for (NSString * objectName in enumerator) {
if(![objectName containsString:@"/"]) {
NSLog(@"%@",objectName);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment