RestKit is an Objective-C framework for iOS that aims to make interacting with RESTful web services simple, fast and fun. It combines a clean, simple HTTP request/response API with a powerful object mapping system that reduces the amount of code you need to write to get stuff done.

learn more… | top users | synonyms

0
votes
0answers
41 views

iOS app builds successfully but simulator does not run

I'm running the following tutorial for developing RestKit applications -> https://github.com/RestKit/RKGist/blob/master/TUTORIAL.md. I have advanced to this step -> "You should now be able to build ...
0
votes
1answer
16 views

How to wrap restkit calls into a service class, and integrate into a controller?

I'm just getting into objective-c, and need some help with this service class I want to write. I want to create a APIService class, that uses restkit and returns the responses. It looks like restkit ...
0
votes
2answers
49 views

iOS RestKit issue: Invalid parameter not satisfying: responseDescriptors

I am trying to use RestKit to retrieve a listing of events and I keep getting this: 2013-05-20 10:52:56.708 EventApp[3380:c07] I restkit:RKLog.m:34 RestKit logging initialized... 2013-05-20 ...
0
votes
2answers
20 views

RestKit - Object Mapping functions not found

I'm naïvely trying to follow the guidelines for mapping one of my CoreData classes with RestKit 0.20 #import <RestKit/RestKit.h> ... RKObjectMapping *mymap = [RKObjectMapping ...
0
votes
1answer
18 views

Issue with adding a one-to-one foreign-key connection to a RestKit mapping

I am trying to add a connection to a RestKit mapping but without success. My JSON is as follows: { parent: { token: "token" title: "title", description: "description", child_id: 1 ...
1
vote
1answer
17 views

How to add a connection to RKEntityMapping when it is contained in the same JSON

I'm trying to map a JSON response to instances of NSManagedObject, but i don't understand how to set the relationship/connection correctly. My classes are: @interface CloudObject : NSManagedObject ...
0
votes
0answers
22 views

Coredata relationship breaking in restkit

I am still using Restkit 0.10 (because i started this project 7 months back. i will be using restkit 0.20 from my next project). come to the point, i have a response from server which looks like ...
0
votes
2answers
22 views

How do you use the RKDotNetDateFormatter in RestKit 0.20?

I am getting a JSON object back from a .NET service that has a date in the following format: /Date(1368825702750-0500)/ I need to be able to deserialize that format into an NSDate and then display ...
0
votes
0answers
26 views

Target Integrity - The file “Pods-ios.xcconfig” couldn't be opened because its path couldn't be resolved. It may be missing"

I'm trying to utilize the four Examples that ship with RestKit Version 0.20.1 Currently trying to Build RKSearchExample. The Build "succeeds" but no simulator appears and I get two warnings 1st one ...
0
votes
1answer
28 views

RestKit POST object to Python

I am using RestKit for iOS to perform a POST to my Python (Flask) server. The POST arguments is a set of nested dictionaries. When I create my hierarchical argument object on the client side and ...
0
votes
1answer
31 views

RestKit 0.20 Post Array Json issues

This is the json that I need to post to services. { "deviceToken":"asdfasdfasdf", "alarm": [ { "start" "8:30", "end": "9:30", "line": "156", "code": "xxxafsdfasdf", "station": ...
0
votes
0answers
49 views

Restkit 0.20 objects are not mapped after getting json response

I'm using RestKit 0.20. I'm trying to download the json response from the local rails application and save it to core-data. I tried to follow https://github.com/RestKit/RKGist/blob/master/TUTORIAL.md ...
0
votes
0answers
34 views

Map POST response to different object - RestKit

I am trying to POST an object (class CompletedTest) and then parse the returned object (class Response) using RestKit 10.0. Sadly, RestKit tries to map the returned object to the class of the posted ...
1
vote
1answer
32 views

How do I identify the cause of a “no attribute was found” exception?

I followed all the steps in the RestKit documentation for adding it to a project but when I try to start my app it stops at this line in application:application didFinishLaunchingWithOptions:: ...
1
vote
2answers
32 views

Reskit iOS: limit attributes sent in PATCH request

I have a bit of a problem where I want to edit a existing object (both on client and server) and then use restkit's patchObject to send the updates. Unfortunately Restkit sends the whole object as a ...
-2
votes
0answers
35 views

Failure block called in RKObjectRequestOperation [closed]

//Creating object request operation but unable to call success block , please help me. Thanks. RKObjectManager *manager = [RKObjectManager sharedManager]; [manager ...
0
votes
0answers
14 views

Restkit ResponseDescriptor Mapping

I am new to Restkit framework. I need to create ResponseDescriptor for below mention HTML format. { "token":"p5926xNaxgsYL7BhWqRN" } How to creating mapping for this format. I have done like: ...
0
votes
1answer
30 views

406 when uploading image from RestKit to RoR backend

I'm having a serious problem and searched for many hours without finding a solution. I have a backend server using Ruby of Rails and paperclip for image saving. The image upload works fine from the ...
0
votes
1answer
25 views

RestKit Pagination mapping error

The pagination documentation suggests: The paginator must be configured with a pagination-mapping specifying how to configuration metadata is to be mapped out of the response payload. The configured ...
0
votes
2answers
43 views

RestKit 0.10.0 with foursquare API's not retrieving the response when using blocks

Um beginner with RestKit, first example for me was on foursquare API's and I've used RestKit with Blocks not delegates. I want to retrive the name's of venues,this is the JSON response and this is ...
0
votes
2answers
30 views

How not to map RestKit response?

I use RestKit to interact with a REST api. For some of the actions, like HTTP PUT/POST/DELETE, I only care about the response status code (200, or 500 etc), and don't care about the response data, ...
0
votes
1answer
29 views

RestKit not mapping Images from JSON

I'm not able to map the Images from my JSON response correctly, and I can't figure out why. Here is error: "W restkit.object_mapping:RKObjectMappingOperation.m:244 Failed transformation of value at ...
0
votes
1answer
31 views

RestKit 0.20 nested Object mapping (path to object tree different)

I got a problem with mapping a nested object value. I got two objects with the following properties: a) class Input @property NSString value; @property NSString title; b) class Profile ...
0
votes
3answers
51 views

Getting images from JSON

I'm using RestKit in my project, and was wondering the best way to pull images from the JSON into the UITableView cells. JSON response: { "timestamp": "2013-05-10T03:09:39Z", ...
0
votes
1answer
52 views

ios Restkit - Mapping objects with a list within another list

I'm trying to map objects using Restkit. I have no problems mapping normal JSON responses. In this case i have a problem because I want to map a response with this configuration: { "id": 161, ...
1
vote
2answers
27 views

Show only some of the objects in an Array

I want to only show some of the items in an array, but can't figure out how to do it. This is the code I have that currently shows all objects in the array: @property (strong, nonatomic) NSArray ...
1
vote
1answer
33 views

RestKit 0.20 Ignore putObject: mapping

I'm trying to send an object to the server (PUT request) without a mapping because I already have everything I need from the server. The callback directly goes to failure, even though the server has ...
0
votes
0answers
24 views

Access api response meta with RestKit 0.20

I'm fairly new to RestKit (and iOS for that matter). My app is using an API (based on tastypie) that returns a response like this: { meta: { limit: 20, offset: 0, ...
0
votes
0answers
31 views

Custom request mapping on collection with RestKit 0.20

I'm trying to find a way to properly map a collection of objects to a JSON dictionary with a specific format. I have an object with the following interface (partial): @interface Reward : NSObject ...
0
votes
0answers
46 views

RubyMotion and RestKit Installation

I'm trying to use RestKit inside a RubyMotion project and it's proving to be much more difficult than expected. I've tried the approach listed here https://github.com/rounders/RestKitTest ...
0
votes
1answer
29 views

RestKit and Restlet JSON key-value

In RestKit for mapping a class to JSON key-value we use, RKObjectMapping * userMapping = [RKObjectMapping mappingForClass:[User class]]; [userMapping mapKeyPath:@"PrimaryKey" ...
-1
votes
0answers
25 views

Restkit RKObjectMapping with two root key values

I have my server like this: { booklist: [10] 0: { publisher: "ABC publication" description: "non-text book" booktype: "philosophy" rating: "10" ...
2
votes
1answer
70 views

RestKit Map values from nested dictionary

I am getting JSON response like this { "id" : 12345 "course_name" : "history", "teacher" : "joy", "region" : { "code" : "Al", "name" : "Alabama" ...
1
vote
1answer
64 views

RestKit Pagination

I'm stuck with a pagination issue. When I go to /?PageSize=:perPage&Page=:page" I will get a json response like this: Which I would like to map using the following paginator: /* ...
0
votes
0answers
23 views

Restkit and opencv2 framework

In my project in using restkit to connect to the webservice and I need to use opencv for image processing. Currently I have integrated restkit and having linker flag for it as -all_load and -ObjC in ...
0
votes
1answer
56 views

RestKit ResponseDescriptors for Paging

I've recently upgraded a project from using RestKit 0.1x to 0.2x and am trying to get my head around the changes particularly in paging. Is someone able to explain to me the following commented code? ...
0
votes
1answer
36 views

What's the correct use of RKObjectManager for PUT?

I'm working with an API which allows updating of objects with PUT requests - with the following format (w/ curl): curl --request PUT -u <api_key>: <api_url> \ -d "attribute=newvalue" ...
0
votes
1answer
60 views

UITableView not pulling JSON in correctly (SOLVED)

EDIT- Solved: I added a Model for "Feed" which took care of the mapping problem I was having. Thanks! I want to display all of the "Headline" in UITableView rows, but I'm getting a crash: ...
0
votes
1answer
34 views

How can I add a new attribute to a RestKit-mapped object after object creation from JSON?

Here's my scenario: I get a JSON list from an API call, and use a RestKit mapping to generate the associated objects, with Core Data backing. I then use a property on one of these objects (= parent) ...
0
votes
1answer
54 views

Restkit delete all objects in coredata for a specific object

Using Restkit and I am not seeing how I go about deleting all the objects (e.g. Shoes) from core data? I used to use the MSMangedObject+EasyFetching, but it hasn't been updated to RestKit .20.
0
votes
0answers
18 views

Restkit routes conflicting

I am using Restkit to make my requests in my iOS project. My issue is that one of routes is overwriting another route or rather taking precedence. [objectManager.router.routeSet addRoute:[RKRoute ...
0
votes
1answer
77 views

Restkit will not insert object attributes to path pattern for request URL path

I'm trying to run a find by ID request on a REST API. I'm using RestKit 0.20. I have a Location object. It has an id attribute. I want to make a GET request to '/locations/:id' and receive the ...
1
vote
1answer
40 views

Stop Restkit from mapping all results

I have a project where I am setting up all responseDescriptors (8 of them) and mappings (8 of them) when my RestEngine class is established... I set them up ahead of time rather during each call. I am ...
0
votes
1answer
27 views

Mapping With Restkit

I am mapping with simple json response, { "town": "ABC", "website": "http://xyz.com", "fee": "50.00", "event_id": 32, "images": [ { "large": "1.jpg", ...
0
votes
0answers
80 views

How to map JSON Arrays in RestKit 0.20

this is the second time I'm asking here. I've got a JSON respond something like this "status": "ok", "count": 90, "count_total": 44, "pages": 5, "posts": [ { "id": 285, ...
0
votes
1answer
32 views

Unable to retrieve data with RestKit because class is not key value coding compliant

I am writing a simple Multiple choice question for iOS. I want to create an API so that I can retrieve the questions and store the answers of the users. I use django and tastypie for the backend. I ...
3
votes
1answer
50 views

Foundations types unknown after installing RestKit 0.20.0 via Cocoapods

I've been looking for an answer but could not find somebody with a similar problem. I have installed RestKit 0.20.0 in my project, using the recommended method (cocoapods), with the following ...
0
votes
1answer
44 views

addResponseDescriptors more than one

I wanna ask something in here. I've mapping the the object and add it to RKResponseDescriptor and it works, but there's a problem here. when the data from JSON is different, it doesn't mapping to the ...
0
votes
0answers
23 views

Getting “cellForRowAtIndexPath” for JSON received from API

I'm getting JSON back from an API, and am having a hard time figuring out how to display cellForRowAtIndexPath. JSON: "grandfathers": [{ "id": "60", "sons": [{ "id": ...
0
votes
2answers
37 views

MBProgressHud not showing when network activity indicator is showing

I am using a table view and trying to show MBProgressHud for cell selections that take a long time to present a modal (2.5 seconds). Here is how I am starting MBProgressHud: - (void)showProgressHud ...

1 2 3 4 5 26