I have the following code, but the compiler throws an error - how can I fix this?
NSString *开发者_如何学JAVAa = @" b ="1.0" "
You need to escape " within " - SO it should be:
NSString *a = @" b =\"1.0\" ";
I have the following code, but the compiler throws an error - how can I fix this?
NSString *开发者_如何学JAVAa = @" b ="1.0" "
You need to escape " within " - SO it should be:
NSString *a = @" b =\"1.0\" ";
精彩评论