I added thirdparty SDK to my project, and I got purgeIdleCellConnections errors when using slow 3G network .
purgeIdleCellConnections: found one to purge conn = 0x1f55b300
There is no problem on wifi network , because it don't use the cellular network for the image downloads.
I have to determine if network type is wifi or 3G :
+ (BOOL) IsEnableWIFI {
return ([[Reachability reachabilityForLocalWiFi]
currentReachabilityStatus] != NotReachable);
}
+ (BOOL) IsEnable3G {
return ([[Reachability reachabilityForInternetConnection]
currentReachabilityStatus] != NotReachable);
}
But I think this is not a good idea. How to deal with it ?
Thank you for any replies.