Skip to content

An Objective-C runtime toolkit. Method swizzling, dynamically creating and working with classes, etc. Ain't nobody got time to be readin runtime docs.

Notifications You must be signed in to change notification settings

18840935753/NSRuntime

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NSRuntime

An Objective-C runtime toolkit. Method swizzling, dynamically creating and working with classes, etc. Ain't nobody got time to be readin runtime docs.

Do things like this:

NSArray *protocolNames = [[NSRuntime sharedRuntime] protocolNamesForClass:[UITableViewController class] 
                                                         includeInherited:YES];
NSArray *propertyNames = [[NSRuntime sharedRuntime] propertyNamesForClass:[UITableViewController class] 
                                                         includeInherited:YES];
                                                         
NSLog(@"Protocols: %@" protocolNames);
NSLog(@"Properties: %@", propertyNames);

About

An Objective-C runtime toolkit. Method swizzling, dynamically creating and working with classes, etc. Ain't nobody got time to be readin runtime docs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 100.0%