Using Objective-C, how can I convert the NSString
@"Panda's Expenses"
into this string
@"Panda's Expenses"
?
Using Objective-C, how can I convert the NSString
@"Panda's Expenses"
into this string
@"Panda's Expenses"
?
 
    
     
    
    Check these two posts. Should solve your issue.
Try this:
NSString *reformedPanda =
    [@"Panda's Expenses" stringByReplacingPercentEscapesUsingEncoding:NSASCIIStringEncoding];
