Must declare a string
NSString *str=@" "Всем привет!" ";
Prog does not like the fact that in quotation marks are quotes. And I need to, when this variable declares, the text was in quotes.
Must declare a string
NSString *str=@" "Всем привет!" ";
Prog does not like the fact that in quotation marks are quotes. And I need to, when this variable declares, the text was in quotes.
*str=@" \"Всем привет!\" "
Not?
Source: https://ru.stackoverflow.com/questions/130948/
All Articles