gpt4 book ai didi

ios - RaptureXML 迭代 :usingBlock warning and crash

转载 作者:行者123 更新时间:2023-11-29 13:35:15 25 4
gpt4 key购买 nike

我正在解析一个如下所示的 XML 文件:

<partie numero="1">
<exercice numero="1" libelle="blabla"></exercice>
<exercice numero="2" libelle="anything"></exercice>
</partie>

我正在使用 Rapture XML 库,因此如 GitHub 上所述,我执行以下操作:

RXMLElement *rxmlPartie = [rxmlParties child:@"partie"];
NSArray *rxmlUnExercice = [rxmlPartie children:@"exercice"];

我可以使用这一行从 partie 中正确打印“numero”属性:

 NSLog(@"Partie #%@",[rxmlPartie attribute:@"numero"] );

但是当我尝试在我的 NSArray 上使用迭代方法时:

[rxmlPartie iterate:@"partie.exercice" usingBlock: ^(RXMLElement *exercice) {NSLog(@"Exercice: %@ (#%@)", [exercice attribute:@"libelle"], [exercice attribute:@"numero"]);}];

我收到一条警告,应用程序崩溃,说:

-[RXMLElement iterate:usingBlock:]: unrecognized selector sent to instance 0xc67f870
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '- [RXMLElement iterate:usingBlock:]: unrecognized selector sent to instance 0xc67f870'

我是否忘记导入某些东西,或者我是否以错误的方式实现了该方法?

如果我尝试使用 iterateWithRootXPath 会发生同样的错误...

感谢您的帮助!

最佳答案

所以,我发现了我的问题所在。

在执行此操作之前,我对使用 Rapture XML 进行配对一无所知……所以我坚持使用文档(就像有人在学校告诉我的那样 :-))。但问题是文档中使用的方法,这个“iterate usingBlock”在框架中没有定义。

而不是使用

[rxmlPartie iterate:@"partie.exercice" usingBlock: ^(RXMLElement *exercice)     {NSLog(@"Exercice: %@ (#%@)", [exercice attribute:@"libelle"], [exercice attribute:@"numero"]);}];

我在用

[rxmlPartie iterate:@"exercice" with: ^(RXMLElement *exercice)     {NSLog(@"Exercice: %@ (#%@)", [exercice attribute:@"libelle"], [exercice attribute:@"numero"]);}];

框架内定义明确!

这让我很开心!!

关于ios - RaptureXML 迭代 :usingBlock warning and crash,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10735145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com