Pergunta

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;
Foi útil?

Solução

RaptureXML automatically deletes namespaces.

episode.summary = [item child:@"summary"].text;
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top