objCType
objCType is a method of the NSValue class in Objective-C that returns the Objective-C type encoding for the value stored in the NSValue instance. The return value is a C string (const char *) describing the type, using the same encoding syntax used by the Objective-C runtime.
The type encoding returned by objCType follows the standard Objective-C runtime type encodings. Simple primitive types
Usage typically involves inspecting the encoding to determine how to interpret the raw bytes stored in the
Related concepts include the runtime type encodings used by the Objective-C runtime and the @encode directive,