Created
July 10, 2014 22:04
-
-
Save odrobnik/739ecd7b2e1a89446f01 to your computer and use it in GitHub Desktop.
Getting all generator CIFilters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NSArray *filters = [CIFilter filterNamesInCategory:kCICategoryGenerator]; | |
NSLog(@"%@", filters); | |
result: | |
<__NSArrayI 0x7ffb63863520>( | |
CIAztecCodeGenerator, | |
CICheckerboardGenerator, | |
CICode128BarcodeGenerator, | |
CIConstantColorGenerator, | |
CIQRCodeGenerator, | |
CIRandomGenerator, | |
CIStarShineGenerator, | |
CIStripesGenerator | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment