| Framework | ApplicationServices/CoreText |
| Declared in | CoreText.h |
This reference document describes miscellaneous symbols that are either used by many different opaque types or apply to Core Text as a whole.
Returns the version of the Core Text framework.
uint32_t CTGetCoreTextVersion( void );
The version number. This value is for comparison with the constants listed in “Core Text Framework Version Numbers”.
This function returns a number indicating the version of the Core Text framework. Note that framework version is not always an accurate indicator of feature availability. The recommended way to use this function is first to check that the function pointer is non-null, followed by calling it and comparing its result to a defined constant (or constants). For example, to determine whether the CoreText API is available:
if (&CTGetCoreTextVersion != NULL && CTGetCoreTextVersion() >= kCTVersionNumber10_5) { |
// CoreText API is available |
} |
CoreText.hVersion numbers of the Core Text framework.
#define kCTVersionNumber10_5 0x00020000
kCTVersionNumber10_5The Core Text framework version in Mac OS X version 10.5.
Available in Mac OS X v10.5 and later.
Declared in CoreText.h
CoreText.h
Last updated: 2007-04-21