What are the applications of copy and mutableCopy in actual projects?
NSString *str1 = @"test";
[str1 copy];
NSMutableString *mStr1 = [NSMutableString stringWithString:@"test002"];
[mStr1 mutableCopy];
NSArray *arry1 = [[NSArray alloc] initWithObjects:@"value1", @"value2",nil];
[arry1 copy];
NSMutableArray *marry1 = [[NSMutableArray alloc] initWithObjects:@"value1",
@"value2",nil];
[marry1 mutableCopy];