I Want Replace String ‘:’ by ‘/’,
I am Using this code to replace
NSString *newPath = [imgPath stringByReplacingOccurrencesOfString:@":" withString:@"/"];
But at a time, I get this error
-[__NSCFDictionary stringByReplacingOccurrencesOfString:withString:]: unrecognized selector sent to instance 0x664e650
What Should I do ?
1 Answer