I couldn't find the answer to this anywhere but I am saving various files in my app to the documents directory using archiving. If I release an update for the app and the user installs it what happens to these files? Will they be deleted?
code to get to documents:
//get the directory
NSArray *documentDirectories = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
//set it to a string
NSString *documentDirectory = [documentDirectories firstObject];
return [documentDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@stickers.archive",[PFUser currentUser].username]];