We have the code to get the class name for c# like
// Get Window class
var windowClass = new StringBuilder(256);
Win32.GetClassName((IntPtr) hwnd, windowClass, windowClass.Capacity);
String windowClassName = windowClass.ToString();
How to convert it in objective c?
This will give you the class-name of the object named objectName.
Similarly you pass the object, and get the class-name.