Вопрос

How to work with tags <itunes:summary>text</itunes:summary>?

These following codes does not work:

episode.summary = [item child:@"summary" inNamespace:@"itunes"].text;

or

episode.summary = [item child:@"summary:itunes"].text;
Это было полезно?

Решение

RaptureXML automatically deletes namespaces.

episode.summary = [item child:@"summary"].text;
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top