I have a weird issue, were I need to add "" after '=' symbol in nsstring. Below is the example
NSString *codes = [NSString stringWithFormat:@"%@",sessionToken];
NSString *slash = [NSString stringWithFormat:@"auth session_token=%@",codes]; << here I have to add the "".
i have tried with
NSString *slash = [NSString stringWithFormat:@"auth session_token=\"%@\"",codes];
but it didn't work the result is showing like this \"value\"
.