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

-6
votes
0answers
35 views

Install Command Git in Mac OSX 10.8.2 [closed]

I need install Git Command in Mac for run : $ cd /path/to/MyApplication # If this is a new project, initialize git... $ git init $ git submodule add git://github.com/RestKit/RestKit.git $ open ...
1
vote
1answer
10 views

RESTKit Managed Object in a not Managed object as relationship

I have a simple object mapping and as a relationship I've added two managed object mappings. I am receiving the following error: CoreData: error: Failed to call designated initializer on ...
0
votes
1answer
9 views

RestKit › [RestKit 0.9] Swap core data database at runtime

Le mardi 18 juin 2013 12:50:29 UTC+2, Appsido a écrit : Hello, I'm facing an issue trying to create a new persistent store at runtime and use this new persistent store. To create the new persistent ...
0
votes
1answer
14 views

iOS Restkit needNewBodyStream called

I perform request to server via Restkit. It is worked well, but sometimes that method is called: - (NSInputStream *)connection:(NSURLConnection *)connection needNewBodyStream:(NSURLRequest *)request ...
0
votes
0answers
14 views

iOS multipart form request failing with attempt to insert nil object from objects[1]

Trying to do a multipart form request with Restkit and I am getting and NSdictionary error? I am not sure why am getting this error. [__NSPlaceholderDictionary initWithObjects:forKeys:count:]: ...
0
votes
0answers
15 views

RKConnectionDescription only works sometimes with Restkit 0.20.1

I'm trying to update multiple models during one GET request with RestKit using the shared manager, eg: [[RKObjectManager sharedManager] addResponseDescriptor:responseDescriptor]; where ...
3
votes
1answer
44 views

iOS 6 What is the standard way to deal with background saving of managed objects (in 2013)?

Last year I used RestKit 0.10 to seamlessly download and save core data objects in background. However, when I tried to use restkit in 2013, I noticed that they have taken out the ActiveRecord ...
0
votes
0answers
17 views

iOS, RESTKit and oAuth - simple sample not working

I am writing a simple application on iOS and I am trying to consume a RESTFull webservice To have some tips and get some knowledge I first start with twitter without using ios integrated libs, but I ...
-2
votes
1answer
29 views

convert from NSString to NSNumber in CoreData mapping with RestKit 0.20.2? [closed]

I get a string value from JSON which is to be mapped to a NSNumber property of a ManagedObject in CoreData with RestKit 0.20.2. How it is possible? Thanks in advance. Actually its not simply ...
0
votes
1answer
26 views

Restkit removing items from core data

I seem to be having an issue with removing items from Core Data using RestKit. I make a call to get some MovingObjects based on an lat and lng, via restkit. They get stored in CD. When I want make ...
0
votes
0answers
33 views

RestKit - Request without object mapping

I am integrating RestKit with my project. I am using the version RestKit-0.20.2. Is there any way we can do the requests without object mapping in this version? I want to do the same thing the poster ...
0
votes
1answer
49 views

Why is it crashing after TableView endUpdates?

I am building an app that fetches data from an API via RestKit. I setup the GET request and was able to load the API into a tableView. I also want to POST to the API and I've setup RKObjectManager and ...
0
votes
1answer
17 views

CocoaPods import Restkit 0.20.2duplicate/Redefinition compile time errors

This is my first time using CocoaPods, and I'm very interested in easily managing restkit installation. Unfortunately, I'm running into the issue listed below - the installation complains about ...
1
vote
1answer
24 views

RestKit: how to remove core data entries to keep the content in sync with the server?

I'm using the RestKit RKObjectManager to get data from my server and store in core data (see my other post) I want to configure the deletion behavior of the old entries left in the database. I saw ...
-1
votes
2answers
29 views

Where can I find RestKit Post sourcecode or tutorials?

I am trying to find some documentation on how to POST to an api with RestKit. I have not been able to find any good tutorial or direction. I can GET json data and display it on an iphone app - but I ...
0
votes
1answer
32 views

RestKit : How to manually set the value of a managed object property?

How to manually set the value of a managed object property in RestKit when it's managed by the object manager ? I created a RKObjectManager with a persistent store for core data persistence. I added ...
0
votes
2answers
35 views

RestKit - Mapping Entities with CoreData - Response Error

I'm building an iOS app that needs to implement search results from Foursquare. I'm using RestKit, but keep running into the same error: "no response descriptors match the response loaded" ...
-1
votes
1answer
33 views

Class does not implement doesNotRecognizeSelector

I have a simple loop : for(Object_ *obj in not.object) { ...... Object *objStor = [NSEntityDescription insertNewObjectForEntityForName:@"Object" inManagedObjectContext:context]; ...
-1
votes
1answer
27 views

about RestKit 0.20.x caching policy [closed]

I'm unclear how to use the RESTKit 0.20.x API to set the request caching policy? 0.20.x not support caching policy? Thanks
0
votes
0answers
35 views

Restkit block turns into vapor

I think I am going to stump everyone on this one. I have an iOS project that has two ways to enter the app (see image). Opening Screen ----> Sign In (email/password) view -----> MainView Opening ...
0
votes
0answers
22 views

CoreData mapping with RestKit 0.20.0 wont save Persistently

CoreData mapping is successful and i got managed object in completion block with RestKit 0.20.2. But it wont save permanently on CoreData. i mean, after completion block i performed a fetched request ...
0
votes
1answer
25 views

CoreData mapping with RestKit will sync automatically?

When we use CoreData mapping with RestKit, will it sync automatically in time periods? I mean when server database is updated, will it reflect in our local database automatically? Or will it sync only ...
0
votes
2answers
67 views

Why xcode and RestKit crash from NSURL nil string parameter

I am new to xcode and following this RestKit tutorial: https://github.com/RestKit/RKGist/blob/master/TUTORIAL.md I have gone through it once succesfully. I am going through it again and customizing ...
1
vote
2answers
63 views

Duplicate Core Data objects created in RestKit 0.20.2

I'm running into an issue where I'm getting duplicate writes to my SQLite database every time I perform a mapping operation in RestKit 0.20.2. I've looked online pretty extensively and can't seem to ...
0
votes
1answer
31 views

Allow excerpt in JSON RestKit

If I have a JSON view that looks like this for a user object in my API: { "id": 1, "posts": [ { "id": 102 }, { "id": 101 }, { "id": 100 } ] } There are never ...
0
votes
1answer
40 views

RestKit: connect relationships with routing

I have a CoreData relationship between a Car and a CarSetting. CarSetting can store different types of settings for a new car like rims, painting, transmission and so on. The Car has a relationship ...
0
votes
0answers
60 views

How can I import base64 image in JSON into core data binary via RESTkit 2.0 in iOS 6?

I have been using importObjectsFromItemAtPath from RKManagedObjectImporter (using RESTkit 2.0 framework) to import some data from a JSON file and put it into core data. I want to put some small ...
0
votes
2answers
49 views

Map JSON “Associative array” into CoreData with RestKit

I need to map JSON associative array of objects with RestKit(iOS). It looks like object with properties 135,145,423 and objects on it. { "135": { "name" : "Object1", "property1" : ...
0
votes
0answers
23 views

RestKit for offline caching [closed]

I want to be able to save my data/content for offline usage and when device comes online, it should sync with latest content of the server. Is RestKit capable of doing it? Any other ...
0
votes
1answer
15 views

RestKit different mime type for one response

I would like to support different mime types for different responses. Most of the time the server returns json, but there are a few situations where it returns nothing and RestKit identifies these ...
0
votes
1answer
41 views

I can't add RestKit Framework in iOS

I am starting learning about RestKit API in iOS. I followed This Tutorials to Install RestKit API. However i followed exactly all of the steps that he provide, i can't add #import ...
0
votes
0answers
80 views

post a request with JSON response with RestKit 0.20.1

I want to post a request with JSON response with RestKit 0.20.1, how can i do it? waiting for your help. thanks in advance..
0
votes
1answer
19 views

RestKit pathPattern using ravenDb id

I'm using RavenDB for my persistence which is giving my objects identifiers like this: networks/33 users/322 etc where the route to load my network restfully is mydomain.com/networks/33 So I'm ...
0
votes
1answer
33 views

RestKit / Core Data — reset objects in backing store, not update

I'm running into a problem with updating objects in my local backing store in my iOS app. Lets say I have an object (in JSON format) { attr1: 'Hello', attr2: 'World' } The corresponding ...
0
votes
1answer
47 views

RestKit 0.20.1 How to map parent id

Given this XML payload: <payload> <year yearNum="2013"> <month monthNum="6" desc="This month was an enlightening month"/> <month ...
0
votes
1answer
24 views

RestKit 0.20 Named Post requests

I am trying to post an object1 (managed object) and receive another object2 (not managed object). I receive the following error: W restkit.object_mapping:RKMapperOperation.m:98 Adding mapping error: ...
-5
votes
0answers
35 views

RestKit Implementation on iOS [closed]

I am trying to get myself to grips with using RestKit. I have followed a few tutorials found online and am still struggling to get going with the project. My project involves implementing RestKit, ...
-1
votes
1answer
22 views

Combine server with local data using RestKit

I am using RestKit to download data from an API, namely an array of book descriptions. In my app, this data is read-only. I need that the user can mark some of the items downloaded as favourites. I ...
1
vote
1answer
36 views

Github is setting up submodules where I don't want them

I have an issue with Git where I am attempting to add RestKit as a submodule and it is submoduling my actual code as well.. I've deleted and re-created but still occuring! This is an image of my ...
0
votes
1answer
37 views

Restkit .20 request timeout interval

Trying to set a request Timeout Interval on Restkit. This post mentions HTTClient, but HTTPClient does NOT seem to have a way to set a timeout interval. Request timeout in restkit 0.20.0 Does ...
1
vote
2answers
93 views

What shouldn't I store in core data?

So this is more of an application design question. But I think it can be 'answered' and not just discussed. :) I'm using RestKit for an application we're building. It obviously makes it super easy to ...
0
votes
0answers
19 views

Sending Network and ObjectMapping logs to an external file

I want to have the RestKit Network and ObjectMapping logs to be logged in an external file in addition to being logged in Xcode debugging console. I tried understanding what LibComponentLogging ...
0
votes
1answer
29 views

RestKit – map single source to multiple destinations with relationship mapping

Given the following Core Data relationships: Recipe <<---> Cookbook Recipe <<---> Author Cookbook <<---> Author And this source JSON representing a recipe: { "id": ...
0
votes
1answer
65 views

RestKit 0.20.1 Composite keys and nested relationships

I am using RestKit 0.20.1 to map an XML feed to a Core Data Model. These are as follows: XML Feed <?xml version="1.0" encoding="utf-8"?> <payload> <competitions> ...
1
vote
1answer
40 views

RestKit requests hang on HTTP errors

I am trying to make my app handle HTTP client errors. Ideally, I would like to run a static method whenever such an error occurs, regardless of the request that caused it. It seems that I am doing ...
0
votes
1answer
29 views

How do you specify multi-tasking support in RestKit 0.20.x?

RestKit used to support multi-tasking using the following code chunk: RKRequest* request = [[RKClient sharedClient] post:@"/upload" delegate:self]; request.backgroundPolicy = ...
0
votes
1answer
21 views

RestKit mapping multiple type array

I have following JSON: { "stream": [{ "catalog": {} }, { "catalog": {} }, { "user": {} }] } with following mapping rules: [RKResponseDescriptor ...
0
votes
1answer
19 views

Backup core data with RestKit 0.20

I am fairly new to RestKit and in general with synching core data with a RESTful web service. To simplify this I have decided to use RestKit for only backing up the local store to our rails backend. ...
0
votes
0answers
42 views

RestKit (v0.21) - Core Data: Mapping JSON without key path

I'm having some trouble mapping this JSON message into corresponding core.data entities ... JSON: { "d": [ "Copenhagen (CPH), Denmark", "Copenhagen, Roskilde (RKE), Denmark", "Comitan ...
-1
votes
1answer
26 views

Restkit giving mapping error:

I am trying to map results from a Foursquare (FS) call. When I use AFNetworking it returns the FS results as expected (JSON). When I try the call with Restkit, either with RKEntityMapping or ...

1 2 3 4 5 28