I have a issue that is popping up and it is probably a syntax issue:
- (void)extracted_method:(NSString **)tempDir_p
{
*tempDir_p = [*tempDir_p stringByAddingPercentEscapesUsingEncoding:
NSASCIIStringEncoding];
}
Im getting the error, 'stringByAddingPercentEscapesUsingEncoding:' is deprecated: first deprecated in iOS 9.0
Anyone?
Thanks Paul
Ok I changed things abit and came up with this:
(tempDir_p *)stringByAddingPercentEncodingWithAllowedCharacters:
(NSASCIIStringEncoding *) ;
still have the same error message...
btw, I am relatively new to this so I apologize if I am upsetting a few people here. 48 and back in school..