If I\'m using Objective-C, here\'s how I declare an initialize an int:
int a = 1;
vs an object:
myObj *a = [[myObj alloc] init]
Pavel's answer is correct. Specifically, the " " is declared in objc.h as:
typedef struct objc_class *Class; typedef struct objc_object { Class isa; } *id;