Hi,
I declare a variable and some methods in the global nsobject class like
@interface classGlobal : NSObject {
NSString *myGuid;
}
@property(nonatomic,assign)NSString *myGuid;
and i synthesize in the .m class. but when i try to access the myGuid variable in the same class (classGlobal.m) then it shows the error "instance variable 'myGuid' accessed in class method". So please suggest how i solve this issue.