On Parse.com, in a Class I have one column which is AUDIO data. My question is: Does the AUDIO data gets completely removed automatically when I delete the ROW (using a Cloud function)? Or do I need to do something special (before or after) to clean off the AUDIO data?
To make the context clearer here is the kind of code I use to upload the sound data:
PFFile *parse_Sound;
NSData *soundData = [NSData dataWithContentsOfURL:myURL];
parse_Sound = [PFFile fileWithName:@"VOICE"
data:soundData];
[parse_Sound saveInBackgroundWithBlock:^(BOOL succeeded, NSError *error) {
……….
}];
and later:
parse_Object = [PFObject objectWithClassName:@"PeraSentence"];
[parse_Object setObject:parse_Sound forKey:@"AUDIO"];
………