之前没问题。
我用了 三方库。
OpenUDID,
还是经过改良版的 ,适应 ARC 的。
objc[14385]: Class PLBuildVersion is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices (0x10fd4d998) and /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices (0x10fb6f880). One of the two will be used. Which one is undefined.
objc[14385]: Class SSKeychain is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices (0x10e78f8d0) and /Users/dengzheyibu/Library/Developer/CoreSimulator/Devices/699B4355-1EF2-4341-AA95-A20F57EFE093/data/Containers/Bundle/Application/87D6B150-EF1C-44DF-BD5D-C886BA943FB9/TheStep.app/TheStep (0x100ec4798). One of the two will be used. Which one is undefined.
2016-12-27 18:30:44.287 TheStep[14385:1970419]
网络请求
iOS Simulator -> Reset Content and Settings; worked for me
AFN的坑--NSCachedURLResponse缓存
用NSURLCache解决UIWebView请求远程资源慢的问题]
(译)缓存在AFNetworking中是如何工作的?AFImageCache和NSUrlCache给你答案
(译)缓存在AFNetworking中是如何工作的?AFImageCache和NSUrlCache给你答案
同界面发多个请求是只有第一个能通过,后面的全挂,求高人赐教,拜谢
每个请求延迟1秒发送时,请求都能走通
一、请求超时
连接错误返回的****Error: Error Domain=NSURLErrorDomain Code=-1001 "****请求超时。****" UserInfo={NSUnderlyingError=0x1408a8eb0 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 "(null)" UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey=http://192.168.80.80:8081/router, NSErrorFailingURLKey=http://192.168.80.80:8081/router, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2102, NSLocalizedDescription=****请求超时。****}
在模拟器上请求时一直是可以的,但是到了真机测试时,一直给我报错:请求超时,任何请求都发送不出去。我和后台人员进行单机调试,也是无用的,后台人员告诉我请求根本没有跳进他的断点。
最后排查原因是:我的模拟器和电脑都是连接本公司的内部无线网,而手机上连接的是针对客人的无线网,两个无线网不在同一个网段(网段(network segment)一般指一个计算机网络中使用同一物理层设备(传输介质,中继器,集线器等)能够直接通讯的那一部分),最后我寻求配管人员获得和模拟器上同一个无线网的密码,连接果真请求成功了。