Skip to content

Instantly share code, notes, and snippets.

@Bayonetta
Last active January 3, 2016 05:19
Show Gist options
  • Save Bayonetta/8415346 to your computer and use it in GitHub Desktop.
Save Bayonetta/8415346 to your computer and use it in GitHub Desktop.
Querying the iOS System for Filters.
NSArray *properties = [CIFilter filterNamesInCategory:kCICategoryBuiltIn];
NSLog(@"%@", properties);
for (NSString *filterName in properties) {
CIFilter *fltr = [CIFilter filterWithName:filterName];
NSLog(@"%@", [fltr attributes]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment