本文主要是介绍如何解决Reachability中的Declaration of 'struct sockaddr_in' will not be visible outside of this function,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
相信大家在判断网络状况的时候,都会用到 Reachability 。
但是在iOS5发布以后,将其导入项目中就会出现下面一个警告
Declaration of 'struct sockaddr_in' will not be visible outside of this function
解决方法很简单,只要在其头文件中添加 #import <netinet/in.h> 警告就解决了。。
这篇关于如何解决Reachability中的Declaration of 'struct sockaddr_in' will not be visible outside of this function的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!