nsstring 怎么包含”(引号)号

使用转义字符 即可。如下:

[NSString *string = @""""];

NSLog("%@",string);

打印结果:“好”
原文地址:https://www.cnblogs.com/ygm900/p/3164622.html