I need to add double quotes to control_text value. However, even though the back slash works for strings, it doesn't work for NSDictionary
values. Is there a way to handle the following situation?
NSDictionary *createText = @{ @"text": @[ @{ @"type": @"control_text" , @"text": @"text" }]};
This is my log:
{
text = (
{
text = text;
type = "control_text";
}
);
}