質問

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