2025年 4月5日(土) 05:41 JST

NSStringでXML直書き

  • 2010年 7月15日(木) 08:36 JST
  • 投稿者:
  • 表示回数 103
[NSString stringWithFormat:
@"<?xml version="1.0" encoding="utf-8"?>"
"<soap:Envelope
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">"
"<soap:Body>"
"<FindCountryAsXml
xmlns="http://www.ecubicle.net/webservices/">"
"<V4IPAddress>%@</V4IPAddress>"
"</FindCountryAsXml>"
"</soap:Body>"
"</soap:Envelope>",
ipAddress.text
]; 上記の場合にエラーが発生、原因は ダブルクォートで囲われた物は1行で表現する必要があるらしい。
よって、下記のようにしなければならない。
<soap:Envelope>
<FindCountryAsXml>のxmlnsタグは1行で
[NSString stringWithFormat:
@"<?xml version=\"1.0\" encoding=\"utf-8\"?>"
"<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">"
"<soap:Body>"
"<FindCountryAsXml xmlns=\"http://www.ecubicle.net/webservices/\">"
"<V4IPAddress>%@</V4IPAddress>"
"</FindCountryAsXml>"
"</soap:Body>"
"</soap:Envelope>",
ipAddress.text
];