`
stephen830
  • 浏览: 3011935 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Reachability 网络编程总结(解析数据,下载文件,确认网络环境)

 
阅读更多

Reachability 网络编程总结(解析数据,下载文件,确认网络环境)

 

 

文章来自:http://www.cocoachina.com/bbs/read.php?tid-31300.html

敬请原谅标题的原创。

一:确认网络环境3G/WIFI

    1. 添加源文件和framework
    
    开发Web等网络应用程序的时候,需要确认网络环境,连接情况等信息。如果没有处理它们,是不会通过Apple的审(我们的)查的。
    Apple 的 例程 Reachability 中介绍了取得/检测网络状态的方法。要在应用程序程序中使用Reachability,首先要完成如下两部:
    
    1.1. 添加源文件:
    在你的程序中使用 Reachability 只须将该例程中的 Reachability.h 和 Reachability.m 拷贝到你的工程中。如下图:


    1.2.添加framework:
    将SystemConfiguration.framework 添加进工程。如下图:


2. 网络状态 
     
    Reachability.h中定义了三种网络状态: 
    typedef enum { 
        NotReachable = 0,            //无连接 
        ReachableViaWiFi,            //使用3G/GPRS网络 
        ReachableViaWWAN            //使用WiFi网络 
    } NetworkStatus; 
     
    因此可以这样检查网络状态: 

    Reachability *r = [Reachability reachabilityWithHostName:@“ www.apple.com ”]; 
    switch ([r currentReachabilityStatus]) { 
            case NotReachable: 
                    // 没有网络连接 
                    break; 
            case ReachableViaWWAN: 
                    // 使用3G网络 
                    break; 
            case ReachableViaWiFi: 
                    // 使用WiFi网络 
                    break; 
    } 
     
    3.检查当前网络环境 
    程序启动时,如果想检测可用的网络环境,可以像这样 
    // 是否wifi 
    + (BOOL) IsEnableWIFI { 
        return ([[Reachability reachabilityForLocalWiFi] currentReachabilityStatus] != NotReachable); 
    } 

    // 是否3G 
    + (BOOL) IsEnable3G { 
        return ([[Reachability reachabilityForInternetConnection] currentReachabilityStatus] != NotReachable);
    } 
    例子: 
    - (void)viewWillAppear:(BOOL)animated {     
    if (([Reachability reachabilityForInternetConnection].currentReachabilityStatus == NotReachable) &&  
            ([Reachability reachabilityForLocalWiFi].currentReachabilityStatus == NotReachable)) { 
            self.navigationItem.hidesBackButton = YES; 
            [self.navigationItem setLeftBarButtonItem:nil animated:NO]; 
        } 
    } 

 

4. 链接状态的实时 通知 
    网络连接状态的实时检查,通知在网络应用中也是十分必要的。接续状态发生变化时,需要及时地通知用户: 
     
    Reachability 1.5版本 
    // My.AppDelegate.h 
    #import "Reachability.h" 

    @interface MyAppDelegate : NSObject <UIApplicationDelegate> { 
        NetworkStatus remoteHostStatus; 
    } 

    @property NetworkStatus remoteHostStatus; 

    @end 

    // My.AppDelegate.m 
    #import "MyAppDelegate.h" 

    @implementation MyAppDelegate 
    @synthesize remoteHostStatus; 

    // 更新网络状态 
    - (void)updateStatus { 
        self.remoteHostStatus = [[Reachability sharedReachability] remoteHostStatus]; 
    } 

    // 通知网络状态 
    - (void)reachabilityChanged:(NSNotification *)note { 
        [self updateStatus]; 
        if (self.remoteHostStatus == NotReachable) { 
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"AppName", nil) 
                         message:NSLocalizedString (@"NotReachable", nil) 
                        delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil]; 
            [alert show]; 
            [alert release]; 
        } 
    } 

    // 程序启动器,启动网络监视 
    - (void)applicationDidFinishLaunching:(UIApplication *)application { 
     
        // 设置网络检测的站点 
        [[Reachability sharedReachability] setHostName:@"www.apple.com"]; 
        [[Reachability sharedReachability] setNetworkStatusNotificationsEnabled:YES]; 
        // 设置网络状态变化时的通知函数 
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(reachabilityChanged:) 
                                                 name:@"kNetworkReachabilityChangedNotification" object:nil]; 
        [self updateStatus]; 
    } 

    - (void)dealloc { 
        // 删除通知对象 
        [[NSNotificationCenter defaultCenter] removeObserver:self]; 
        [window release]; 
        [super dealloc]; 
    }  
     
    Reachability 2.0版本 
     

    // MyAppDelegate.h 
    @class Reachability; 

        @interface MyAppDelegate : NSObject <UIApplicationDelegate> { 
            Reachability  *hostReach; 
        } 

    @end 

    // MyAppDelegate.m 
    - (void)reachabilityChanged:(NSNotification *)note { 
        Reachability* curReach = [note object]; 
        NSParameterAssert([curReach isKindOfClass: [Reachability class]]); 
        NetworkStatus status = [curReach currentReachabilityStatus]; 
     
        if (status == NotReachable) { 
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"AppName"" 
                              message:@"NotReachable" 
                              delegate:nil 
                              cancelButtonTitle:@"YES" otherButtonTitles:nil]; 
                              [alert show]; 
                              [alert release]; 
        } 
    } 
                               
    - (void)applicationDidFinishLaunching:(UIApplication *)application { 
        // ... 
                   
        // 监测网络情况 
        [[NSNotificationCenter defaultCenter] addObserver:self 
                              selector:@selector(reachabilityChanged:) 
                              name: kReachabilityChangedNotification 
                              object: nil]; 
        hostReach = [[Reachability reachabilityWithHostName:@"www.google.com"] retain]; 
        hostReach startNotifer]; 
        // ... 
    } 


二:使用NSConnection下载数据 
     
    1.创建NSConnection对象,设置委托对象 
     
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:[self urlString]]]; 
    [NSURLConnection connectionWithRequest:request delegate:self]; 
     
    2. NSURLConnection delegate委托方法 
        - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response;   
        - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error;   
        - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data;   
        - (void)connectionDidFinishLoading:(NSURLConnection *)connection;   

    3. 实现委托方法 
    - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { 
        // store data 
        [self.receivedData setLength:0];            //通常在这里先清空接受数据的缓存 
    } 
     
    - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data { 
           /* appends the new data to the received data */ 
        [self.receivedData appendData:data];        //可能多次收到数据,把新的数据添加在现有数据最后 
    } 

    - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { 
        //  错误 处理 
    } 

    - (void)connectionDidFinishLoading:(NSURLConnection *)connection { 
        // disconnect 
        [UIApplication sharedApplication].networkActivityIndicatorVisible = NO;    
        NSString *returnString = [[NSString alloc] initWithData:self.receivedData encoding:NSUTF8StringEncoding]; 
        NSLog(returnString); 
        [self urlLoaded:[self urlString] data:self.receivedData]; 
        firstTimeDownloaded = YES; 
    } 

三:使用NSXMLParser解析xml文件 

    1. 设置委托对象,开始解析 
    NSXMLParser *parser = [[NSXMLParser alloc] initWithData:data];   //或者也可以使用initWithContentsOfURL直接下载文件,但是有一个原因不这么做: 
    // It's also possible to have NSXMLParser download the data, by passing it a URL, but this is not desirable 
    // because it gives less control over the network, particularly in responding to connection errors. 
    [parser setDelegate:self]; 
    [parser parse]; 

    2. 常用的委托方法 
    - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName  
                                namespaceURI:(NSString *)namespaceURI 
                                qualifiedName:(NSString *)qName  
                                attributes:(NSDictionary *)attributeDict; 
    - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName  
                                namespaceURI:(NSString *)namespaceURI  
                                qualifiedName:(NSString *)qName; 
    - (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string; 
    - (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError; 

    static NSString *feedURLString = @"http://www.yifeiyang.net/test/test.xml"; 

    3.  应用举例 
    - (void)parseXMLFileAtURL:(NSURL *)URL parseError:(NSError **)error 
    { 
        NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:URL]; 
        [parser setDelegate:self]; 
        [parser setShouldProcessNamespaces:NO]; 
        [parser setShouldReportNamespacePrefixes:NO]; 
        [parser setShouldResolveExternalEntities:NO]; 
        [parser parse]; 
        NSError *parseError = [parser parserError]; 
        if (parseError && error) { 
            *error = parseError; 
        } 
        [parser release]; 
    } 

    - (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI  
                                        qualifiedName:(NSString*)qName attributes:(NSDictionary *)attributeDict{ 
        // 元素开始句柄 
        if (qName) { 
            elementName = qName; 
        } 
        if ([elementName isEqualToString:@"user"]) { 
            // 输出属性值 
            NSLog(@"Name is %@ , Age is %@", [attributeDict objectForKey:@"name"], [attributeDict objectForKey:@"age"]); 
        } 
    } 

    - (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI  
                                        qualifiedName:(NSString *)qName 
    { 
        // 元素终了句柄 
        if (qName) { 
               elementName = qName; 
        } 
    } 

    - (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string 
    { 
        // 取得元素的 text 
    } 

    NSError *parseError = nil; 
    [self parseXMLFileAtURL:[NSURL URLWithString:feedURLString] parseError:&parseError];

 

 

 

  • 大小: 8.9 KB
  • 大小: 109.5 KB
分享到:
评论

相关推荐

    Reachability 网络判断库文件

    这对于优化网络请求的性能,例如在移动网络下限制大文件的下载,或者提供不同的服务质量很有帮助。 二、 Reachability 使用步骤 1. **导入库**:首先,你需要将 Reachability 库引入到你的项目中,这可以通过...

    ios Reachability

    4. **网络状态变化的通知** (NetworkChangeNotification): 当网络状态发生变化时,如从Wi-Fi切换到蜂窝数据,或者网络连接突然断开, Reachability会发送通知,以便应用可以相应地更新其行为。 Reachability库的...

    网络编程总结(IOS)

    ### 网络编程总结(iOS) 在网络编程领域,尤其是针对iOS平台开发的应用程序中,对网络连接状态的准确检测是非常关键的一个环节。这不仅能够提升应用的用户体验,还能够帮助开发者避免因为网络状态未被妥善处理而...

    Reachability网络状态

    总结来说,Reachability是iOS开发中不可或缺的工具,它提供了可靠且规范的网络状态检测方式,尤其在iOS 11及以上版本中,避免了对用户隐私的不恰当访问。同时,对于iPhone X系列的适配,开发者需要关注安全区域的...

    Reachability

    Reachability是iOS、macOS和Xamarin开发中的一个重要概念,用于检测设备的网络连接状态,例如是否连接到互联网,以及连接的类型(如Wi-Fi、蜂窝数据等)。在iOS和macOS应用开发中,良好的网络连接性检测是提供稳定...

    Reachability 网络状态的使用和封装,更加方便使用

    Reachability 是 iOS 开发中一个重要的工具类,用于检测设备的网络状态,包括无网络、WiFi、蜂窝数据等。这个工具最初由 Tony Million 设计并实现,现在已经被广泛使用在许多 iOS 应用中。在本文中,我们将深入探讨 ...

    iOS中使用 Reachability 检测网络

    三、 Reachability源码解析 Reachability的实现主要依赖于SystemConfiguration框架中的`SCNetworkReachability`接口。通过创建`SCNetworkReachability`对象并设置回调,我们可以获取网络状态变化的信息。在源码中,`...

    Reachability使用说明<转载>

    Reachability是iOS开发中一个非常重要的工具,它用于检测设备的网络可达性,例如Wi-Fi、蜂窝数据等网络状态的变化。这个工具是由斯坦福大学的Scotty Loveless开发的,并且在iOS开发者社区中广泛使用。这篇博客文章...

    IOS ReachAbility

    IOS 网络编程 ReachAbility头文件和源文件,用于判定网络的连接情况

    iOS 网络编程

    iOS网络编程是苹果iOS开发中的一项重要技能,它允许应用程序通过网络与其他服务器或设备进行通信和数据交换。在iOS平台上,有多种网络编程的实现方式,包括但不限于使用URLSession, NSURLConnection, WebSockets等。...

    swift-Reach一个现代Reachability网络库

    Swift-Reach 是一个专为Swift编程语言设计的现代化网络可达性库,它的主要目标是帮助开发者轻松地检测iOS、macOS、tvOS或watchOS应用的网络状态。这个库是基于Apple的Reachability原生框架进行封装,提供了更简洁、...

    iOS网络高级编程(含源码)

    《iOS网络高级编程》这本书是针对iOS开发人员深入学习网络技术的重要参考资料,它涵盖了iOS平台上的网络编程的各种高级主题,并且附带了源码,使读者能够通过实践来加深理解。以下将对这本书中可能涉及的关键知识点...

    ios网络编程

    在iOS开发中,网络编程是不可或缺的一部分,它使得应用程序能够与服务器进行数据交换,实现诸如下载、上传、实时通信等功能。本教程聚焦于iOS的网络编程,特别提到了多线程网络编程,这对于提高用户体验和优化性能至...

    iOS_Reachability

    Reachability 是 iOS 开发中一个重要的知识点,用于检测设备当前的网络状态,包括是否连接到互联网,以及连接的类型(例如蜂窝数据还是 Wi-Fi)。这个例子是苹果官方提供的,对于开发者来说,是一个非常有价值的参考...

    swift-Reachability.swift使用Swift写的第三方网络检测类

    Reachability.swift 是一款由Ashley Mills开发的著名第三方库,专为Swift编程语言设计,用于检测iOS、macOS、tvOS以及watchOS等Apple平台上的网络可达性。这个库简化了开发者判断当前设备网络状态的过程,包括是否...

Global site tag (gtag.js) - Google Analytics