LRResty
LRResty copied to clipboard
Yet another Objective-C REST client library, inspired by Ruby's restclient gem.
I couldn't build LRResty because Xcode 4.3 doesn't include a 4.3 SDK, and we needed it to support armv6 for a project we're using it in.
I know that there's some contention about whether DELETE requests should support an HTTP body, but it's not forbidden in the spec, and you're often at the mercy of what...
OCHamcrest submodule is referencing to a non-exisiting repository
RestKit allows you to post images with: ``` RKParams* params = [RKParams params]; RKParamsAttachment* attachment = [params setData:UIImageJPEGRepresentation([thumbnail.image fixOrientation], 0.1) MIMEType:@"image/jpeg" forParam:@"timeline[photo]"]; [[RKClient sharedClient] post:urlString params:params delegate:self]; ``` Is there...
When these method called, no response return and the app hang there. But block/delegate method in LRRestyClient still work.
Checking out http://github.com/pivotal/OCHamcrest.git doesn't work for me. The repo seems to be private now.
I downloaded the arcified branch of LRResty and imported the files into my Xcode project. On build, I'm seeing these warnings : -Implicit declaration of function 'DEFINE_SHARED_INSTANCE_USING_BLOCK' is invalid in...
how to install LRResty? The first way is Importing the framework (Download the framework and drag it into your project). I can't find the framework in the file list. anyone...