Does Objective-C guarantee the initialization of interface member data?
- by Stabledog
In an interface such as this:
@interface MyClass : NSObject
{
bool PlainOldBool;
}
@end
... does PlainOldBool get auto-initialized to false, or is it necessary to use an init method to do that explicitly?