ios5中使用Reachability的问题) reachabilityWithAddress: (const struct sockaddr_in*) hostAddress;

\
原创作品,允许转载,转载时请务必以超链接形式标明文章  原始出处 、作者信息和本声明。否则将追究法律责任。 http://rainbird.blog.51cto.com/211214/682542

 做ios网络开发的肯定会用到苹果的官方库Reachability。ios5发布了,将项目升级到ios5的过程发一个warning:

+ (Reachability*) reachabilityWithAddress: (const struct sockaddr_in*) hostAddress;

Declaration of 'struct sockaddr_in' will not be visible outside of this function

解决办法很简单,Reachability.h中最前面添加头文件:#import <netinet/in.h>

ios5来了,要做的事情真多,尤其是一些在ios4上好使的效果不好使了。。。

本文出自 “rainbird” 博客,请务必保留此出处http://rainbird.blog.51cto.com/211214/682542

你可能感兴趣的:(ios)