菜鸟教程小白 发表于 2022-12-13 00:41:45

ios - xmlParser 解析导致 iOS8 崩溃,但在 iOS 7 中工作正常?


                                            <p><p>在模拟器上运行, 在 iOS 8 中可能会导致崩溃,但在 iOS7 中可以正常工作。关于 NSXMLParser,我找不到 iOS 7 和 iOS 8 之间的任何区别。</p>

<p>相关:</p>

<pre><code>NSData *data = [ initWithContentsOfFile:xmlFilePath];
NSXMLParser *xmlParser = [ initWithData:data];
;
BOOL success = ;//crash at this line.
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 IOS 8 中,NSXMLParser 不支持可重入解析。我很确定在您指定的行导致的崩溃是由于可重入解析(即在 NSXMLParser 的委托(delegate)方法中设置委托(delegate))。电话 <a href="https://stackoverflow.com/questions/25363560/ios8-nsxmlparser-crash" rel="noreferrer noopener nofollow">ake a look at this question</a> </p>

<p>希望对你有帮助。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - xmlParser 解析导致 iOS8 崩溃,但在 iOS 7 中工作正常?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/25277430/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/25277430/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - xmlParser 解析导致 iOS8 崩溃,但在 iOS 7 中工作正常?