我有這個小碼:如何把目標C中的轉義序列?
NSString *size = [LabelNewContent stringByEvaluatingJavaScriptFromString:@"return Math.max(
document.body.scrollHeight, document.documentElement.scrollHeight,
document.body.offsetHeight, document.documentElement.offsetHeight,
document.body.clientHeight, document.documentElement.clientHeight
);"];
問題是Xcode的犯規承認括號和逗號整個字符串。
這是不正確的。 'Math.max()','document.body.etc'和'document.documentElement.etc'都是JavaScript,因此應該在字符串中。 [Inder Kumar Rathore的答案](http://stackoverflow.com/a/18442812/255489)是正確的。 –