1
vote
1answer
16 views

Mapping relationships with AFIncrementalStore

I'm in the process of integrating AFIncrementalStore into my project but I'm having a hard time figuring out how to make relationships work. Let's say I have two models: Document and Page. A ...
0
votes
1answer
32 views

3 Requests per object with AFIncrementalStore using NSFetchedResultsController

I have everything setup with AFIncrementalStore to use Parse as a backend service. Using such a service makes counting API requests important as if I exceed 1MM requests/month (though a successful ...
1
vote
1answer
33 views

AFIncrementalStore Unrecognized selector -[NSNull length] error

I'm trying to add AFIncrementalStore to an existing Core Data app with lots of data already in the database. I thought I'd added everything necessary, then I fire up the app, and during the initial ...
1
vote
1answer
221 views

AFIncrementalStore and a ton of Core Data fetches

I've been using AFIncrementalStore and decided to profile my Core Data fetch requests. I have no idea why the number of requests would be so large. Any fundamentals I might be screwing up?
0
votes
1answer
402 views

MagicalRecord + AFNetworking + NSFetchedResultsController, how to make it work?

In my application I try to use MagicalRecord + AFNetworking + NSFetchedResultsController together, to synchronize data and dynamically display it on map or in tableView. Let's see some code for ...
0
votes
1answer
346 views

iOS - Performing multiple AFJSONRequestOperations that write to Core Data in background

I am having trouble determining the best way to manage updates to my apps SQLite database (using Core Data) When my app launches, it hits a server to determine which tables need updating. I then do a ...
1
vote
1answer
223 views

Set Core Data to lazy load to-one relationship

I'm using AFIncrementalStore to connect my iOS application to my REST API. When I load my initial view controller, I create an NSFetchRequest that loads the latest 100 Events (NSManagedObjects) into ...
1
vote
2answers
504 views

Is AFNetworking with CoreData thread-safe?

I am running into intermittent, hard-to-reproduce errors on my iPhone app, so I am checking my assumptions around concurrency. Running AFNetworking v0.10.x, I have the following network call: [self ...
0
votes
0answers
273 views

Updating Core Data in AFHTTPRequestOperation's setCompletionBlockWithSuccess Memory Cycle

I am updating my photo table after uploading a image to server using AFHTTPRequestOperation. In completion block I am updating the table. [operation ...
3
votes
1answer
364 views

AFIncrementalStore handling non-rest response with relationships

I am using AFIncrementalStore to fetch data from a webservice and persist it in a SQLite database through app launches. The webservice doesn't follow REST standards, so I can't use AFRestClient but ...
1
vote
2answers
763 views

AFNetworking alternative to sendSynchronousRequest for populating CoreData

I'm currently doing this when populating core data from a JSON file: NSString *urlString = [value objectForKey:@"url"]; NSURL *url = [NSURL URLWithString:urlString]; NSURLRequest *request = ...
0
votes
2answers
528 views

How do you post data to a server using Core Data and AFIncrementalStore?

I've just started using the awesome AFIncrementalStore and have managed to get a basic iOS app running that displays data from a server (JSON format) displayed in a UITableView. But how can I post ...
0
votes
0answers
478 views

Duplicate records in Core Data on fetch using AFIncrementalStore

I've seen several questions on StackOverflow involving duplicates and Core Data, but none quite similar to my problem. I have an iOS app built very similar to the "Basic Example" included with ...
6
votes
1answer
738 views

iOS - MagicalRecord / AFNetworking / NSFetchedResultsController - background resyncing process causes perpetual hang

So the objective I'm trying to achieve is a syncing process that is supposed to be completed in the background using AFNetworking and Magical Record, but causes a perpetual hang when a view ...
4
votes
2answers
3k views

wait until multiple operations executed - including completion block (AFNetworking)

i have multiple operations(afnetworking requests) with a completion block that takes some time to execute and a coredata object that needs to be saved at the end of all requests MyCoreDataObject ...
0
votes
2answers
3k views

AFNetworking for Image Downloads, Unresponsive UI

I'm using AFNetworking to pull images from a URL, resize, store to disk and log the path in Core Data, then load to a table view and store . When the code executes it freezes my UI. I'm not sure if ...
4
votes
1answer
394 views

How best to structure code to download resources using AFNetworking and CoreData in iOS

I first download a single index document using AFHTTPClient and record each record using CoreData. I then need to spin up a separate process to download each individual record. What's the best way to ...