Code Monkey home page Code Monkey logo

szknetworkutils's Introduction

SZKNetWorkUtils

iOS开发-一句代码调用实现网络的监测功能(基于AFNetworkReachabilityManager的封装)

详细文档请查看:http://www.jianshu.com/users/86b0ddc92021/latest_articles

在ViewController.m导入

#import "SZKNetWorkUtils.h"

一句代码调用,将netState用block返回,1表示手机流量上网,2表示WIFI上网,0或-1表示没网,并且对netState进行了监听,netState改变时将会自动执行相应的方法。

    [SZKNetWorkUtils netWorkState:^(NSInteger netState) {
        switch (netState) {
            case 1:{
                NSLog(@"手机流量上网");
            }
                break;
            case 2:{
                NSLog(@"WIFI上网");
            }
                break;
            default:{
                NSLog(@"没网");
            }
                break;
        }
    }];
    

详细文档请查看:http://www.jianshu.com/users/86b0ddc92021/latest_articles

QQ/微信:790057066 。

简书号:iOS_凯:http://www.jianshu.com/users/86b0ddc92021/latest_articles

GitHub个人主页:https://github.com/18811314750

欢迎各位前来查看,star,感谢各位的阅读。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.