Does ObjC supports Static Member Variable, and if so, how do you set it?

The getter function gets a compile time error. In C++ we do MyObject::staticObject to return the static member variable but I am not sure how is that done in ObjC

Ex:

@interface MyObject : NSObject {        
        static BaseObject *staticObject;
}

- (BaseObject *)staticObject
{
        return staticObject;
}

Thank you
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to [EMAIL PROTECTED]

Reply via email to