gpt4 book ai didi

iphone - Xcode 3.2.4 - 如何将一行分成多行

转载 作者:行者123 更新时间:2023-12-03 20:21:18 25 4
gpt4 key购买 nike

我的部分代码会将 HTML 代码输出到文件中。我有一个 header 将被标记在所有文件的开头。我想将其声明为:

NSString *myHeader = @"
<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n
\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n
\n
<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n
<head>\n
<meta http-equiv=\"content-type\" content=\"text/html;charset=UTF-8\" />\n
<meta http-equiv=\"X-UA-Compatible\" content=\"chrome=1\">\n
<title>My Title</title>\n
<link rel=\"search\" type=\"application/opensearchdescription+xml\" href=\"/opensearch.xml\" title=\"GitHub\" />\n
<link rel=\"fluid\" href=\"http://mysite.com/fluid.png\" title=\"fluid\" />\n
";

显然我已经转义了引号,但即使这样做,Xcode 也不喜欢这个分散在几行上的字符串声明。如果可能的话,我想保持这种方式,而不是把它放在很长的一行中,这样很难阅读和更改。

我怎样才能做到这一点?

谢谢。

最佳答案

像这样:

NSString *myHeader = @"text here"
@"more text here"
@"even more text here"
@"still more text";

关于iphone - Xcode 3.2.4 - 如何将一行分成多行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4090673/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com