XML タグ内に次の HTML フォーマット タグを含むオンライン XML を解析しようとしています。
<synopsis>
<!--[CDATA[<p>
<span style="color: rgb(0, 0, 0); font-family: arial; font-size: 13px; white-space: pre-wrap;">Yeh Jawaani Hai Deewani is a story of the exhilarating and terrifying journey of four characters &ndash; Bunny, Naina, Aditi and Avi, as they navigate through their youth; from their carefree laughter as they set off on a holiday together in their colleges days, until their bittersweet tears as they watch the first of their bunch get married.</span></p>]]-->
</synopsis>
「概要」タグの間のコンテンツは、HTML としてエンコードされます。WebView で HTML 形式のコンテンツを表示したいので、解析中にこの値を arria に格納し、arra から NSString として取得し、その文字列変数で WebView loadHTMLString を使用しました。しかし、コンテンツは HTML 形式で表示されません。あらすじタグにそのまま表示されています。
編集:
これは、XML 概要タグでエンコードする前の HTML コンテンツです。
<synopsis>
<body style=\"background:black;\">
<p>
<span style=\"color: rgb(255, 255, 255); font-family: arial; font-size: 13px; white-space: pre-wrap;\">Yeh Jawaani Hai Deewani is a story of the exhilarating and terrifying journey of four characters – Bunny, Naina, Aditi and Avi, as they navigate through their youth from their carefree laughter as they set off on a holiday together in their colleges days, until their bittersweet tears as they watch the first of their bunch get married.
</span>
</p>
</body>
</synopsis>
「概要」タグ間のデータを解析したかったのですが、実行できませんでした。