ios – 有关多个连接提要视图的XML解析的设计实现建议

ios – 有关多个连接提要视图的XML解析的设计实现建议,第1张

概述启动我的第一个iOS项目,并希望就如何构建应用程序提出建议. 该应用程序提取 XML提要,解析出来并显示表示 XML提要中项目的列表.单击列表中的项目时,应用程序将使用先前提取的XML提要中的一个属性提取新的XML提要.这发生了几层拉,解析,显示和用户选择再次做同样的事情.现在大多数XML元素结构都是这样的: (这些只是为了演示正在发生的事情的简单示例) > http://site.com/get 启动我的第一个iOS项目,并希望就如何构建应用程序提出建议.
该应用程序提取 XML提要,解析出来并显示表示 XML提要中项目的列表.单击列表中的项目时,应用程序将使用先前提取的XML提要中的一个属性提取新的XML提要.这发生了几层拉,解析,显示和用户选择再次做同样的事情.现在大多数XML元素结构都是这样的:

(这些只是为了演示正在发生的事情的简单示例)

> http://site.com/get/items/

返回(显示新视图的信息):

<items>    <item ID="123" name="item 1" />    <item ID="124" name="item 2" />    <item ID="125" name="item 3" /></itmes>

> http://site.com/get/description/123(示例用户已选择项目1,拨打电话获取说明)

收益:

<itemDescription>    <description itemID="123" name="desc 1" description="blah 1" /></itemDescription>

想知道:

>我应该在每个视图中都有连接类/对象或新连接吗?
>我应该在每个视图中都有解析器类/对象或解析XML提要吗?
>我还希望存储一些返回的数据,因此如果用户导航回主项列表,我不需要再次调用XML提要,但我每次都需要解析itemsDescription XML提要.

我已经看了几个解析XML的教程,我得到了如何做到这一点的要点,希望更多地关注设计和可重用性,而不是在每个新视图中复制代码.或者我是如何做到这一点的

解决方法 Apple指南之后您可以执行此 *** 作的最佳方法是检查他们的一个示例,几个月前,我在此示例后创建了一个类似于您的应用程序.您还可以看到如何使您的应用处于离线模式.

Basic structure(没有离线模式):

The SeismicXML sample application demonstrates how to use NSXMLParser
to parse XML data. When you launch the application it downloads and
parses an RSS Feed from the United States Geological Survey (USGS)
that provIDes data on recent earthquakes around the world. It displays
the location,date,and magnitude of each earthquake,along with a
color-coded graphic that indicates the severity of the earthquake. The
XML parsing occurs on a background thread using NSOperation and
updates the earthquakes table vIEw with batches of parsed objects.

Advanced structure(有离线模式):

Demonstrates how to use Core Data in a multi-threaded environment,
following the first recommended pattern mentioned in the Core Data
Programming GuIDe.

Based on the SeismicXML sample,it downloads and parses an RSS Feed
from the United States Geological Survey (USGS) that provIDes data on
recent earthquakes around the world. What makes this sample different
is that it persistently stores earthquakes using Core Data. Each time
you launch the app,it downloads new earthquake data,parses it in an
NSOperation which checks for duplicates and stores newly founded
earthquakes as managed objects.

For those new to Core Data,it can be helpful to compare SeismicXML
sample with this sample and notice the necessary ingredIEnts to
introduce Core Data in your application.

关于cwIEland的回答我不会使用ASIhttpRequest,因为它是@L_301_6@,所以如果你想按照他的方法我会建议你使用AFNetworking,你可以轻松快速地处理XML请求:

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://API.flickr.com/services/rest/?method=flickr.groups.browse&API_key=b6300e17ad3c506e706cb0072175d047&cat_ID=34427469792%40N01&format=rest"]];AFXMLRequestoperation *operation = [AFXMLRequestoperation XMLParserRequestoperationWithRequest:request success:^(NSURLRequest *request,NShttpURLResponse *response,NSXMLParser *XMLParser) {  XMLParser.delegate = self;  [XMLParser parse];} failure:nil];NSOperationQueue *queue = [[[NSOperationQueue alloc] init] autorelease];[queue addOperation:operation];
总结

以上是内存溢出为你收集整理的ios – 有关多个连接/提要/视图的XML解析的设计/实现建议全部内容,希望文章能够帮你解决ios – 有关多个连接/提要/视图的XML解析的设计/实现建议所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/web/1100212.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存