lets say I have the following class
@implementation userSetUp{
NSString *folderIdentification;
}
-(id) initWithDriveService:(GTLRDriveService *)driveService withFilePath: (NSString *)aFilePath{
folderIdentification = some string
}
end
now I have another method in the same class, but folderIdentification is returning null even though I defined it in the initializer method for the class. Could someone please tell me how I should define folderIdentification so that I can get the same instance behavior found in swift and java and the folderIdentification in reuploadToFolder does not return null?
-(void )reuploadToFolder{
folderIdentification is used but for some reason is nill.
}