MKNetworkKit icon indicating copy to clipboard operation
MKNetworkKit copied to clipboard

Modern NSURLSession based Networking Framework with built in authentication and HTTP 1.1 caching standards support for iOS 8+ devices

Results 101 MKNetworkKit issues
Sort by recently updated
recently updated
newest added

First time "The network connection was lost." error coming , second time its getting success. but in ios7 its working fine. Error Domain=NSURLErrorDomain Code=-1005 "The network connection was lost." UserInfo=0x7b03be00...

Hi, My application has feature to switch user to login. When i first time logged in with user X. And log out and immediate tried to loved in with user...

I used cocoapods to install with xcode 6.1. After that , I called '#import "MKNetworkOperation.h" ' and build, it showed wrong for Parse Issue: Unknown type name 'NSError', Unknown type...

NSDictionary *pDic = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithInt:1], @"userId", [NSNumber numberWithInt:1], @"skuId", nil]; if (([method isEqualToString:@"GET"] || [method isEqualToString:@"DELETE"]) && (params && [params count] > 0)) { ``` finalURL = [NSURL...

NSDictionary *pDic = [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithInt:1], @"userId", [NSNumber numberWithInt:1], @"skuId", nil]; if (([method isEqualToString:@"GET"] || [method isEqualToString:@"DELETE"]) && (params && [params count] > 0)) { finalURL = [NSURL URLWithString:[NSString...

During testing I've found that it is possible that the operation state may be set to finished then back to executing due to the connection start occurring in a dispatch_async...

If reachability changes quickly enough (which was occurring a bunch during unit testing, but less likely in real life situations), if checkAndRestoreFrozenOperations is called while freezeOperations is still running, ops...

Server has a url that file param is optinal, but must use multipart/form-data type to post. If i send request without file then get a error. Is it possible to...

I was having an issue where trying to issue many POST's rapidly would cause everything to freeze up. So I started debugging the freeze process and monitoring the shared queue...

If i do the same GET (same url) in // 5 times. (with the caching off.) each different completion function will be called multiple times (more than 2, sometime up...