Skip to content

Instantly share code, notes, and snippets.

@Clancey
Created June 23, 2011 23:23
Show Gist options
  • Save Clancey/1043878 to your computer and use it in GitHub Desktop.
Save Clancey/1043878 to your computer and use it in GitHub Desktop.
static IntPtr CoreImage_libraryHandle = Dlfcn.dlopen ("/System/Library/Frameworks/CoreImage.framework/CoreImage", 0);
static NSString _TypeFace;
public static NSString TypeFace {
get {
if (_TypeFace == null)
_TypeFace = Dlfcn.GetStringConstant (CoreImage_libraryHandle, "CIDetectorTypeFace");
return _TypeFace;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment