The nsfetchedresultcontroller tag has no wiki summary.
0
votes
2answers
23 views
How to populate UITableView with 3 different types of NSManagedObjects
How do I populate a UITableView with multiple different types of NSManagedObjects?
I'm building a digital training journal so at present my three types are "Sleep", "Food" & "Water".
I've been ...
0
votes
1answer
19 views
Core data crashing on delete of parent tablerow
I'm using ECSlidingViewController for a Path & FB style UI. Two UITableViews, one (The detail) is shown as the main view, the second (the master) is revealed as the sidemenu. Both powered by Core ...
0
votes
1answer
27 views
iOS NSFetchedResultsController Insert Section Redundant Cycling Issue
So I am using a UICollectionView with an NSFetchedResultsController with cache (leaning on Ash Furrow's implementation https://github.com/AshFurrow/UICollectionView-NSFetchedResultsController). ...
1
vote
0answers
31 views
Using a NSFetchedResultsController with an NSManagedObject and fetched properties
I have a database of Cards and Printings that I have in one store (reference data) and my user's data of Containers and CardInstances in another store (as Apple suggests). Each user's card is a table ...
0
votes
3answers
37 views
Core Data crash: Keypath Project not found in entity
- (void)fetchResult
{
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"Project" ascending:YES];
...
1
vote
0answers
36 views
What am I not understanding about NSFetchedResultsController and deleting objects from the MOC?
I am successfully updating a tableview using a NSFetchedResultsController, and this is what I am doing:
Loading app the app and calling - (NSFetchedResultsController *)fetchedResultsController to ...
0
votes
1answer
43 views
Core Data fetchedresultscontroller returns empty on device only
I Wrote an application that uses core data and it was working fine, on both simulator and devices. Then I made a new git branch of the project and it works perfectly on the simulator but not on the ...
1
vote
2answers
45 views
NSFetchedResults Controller blocking UI when updating uitableview
The update of uitableview with nsfetchedresultscontroller blocks the ui till the data gets loaded.I need to avoid it.Can you please suggest ways to avoid it?
0
votes
2answers
97 views
predicateWithFormat:argumentArray: Using Only First item in NSArray
I'm writing a fetchedResultsController for my core data model, and am having an issue with the predicate only using 1 item out of the argumentArray. If the array has 3 items, it will print out this: ...
-1
votes
1answer
70 views
Core Data: Relationships and User Objects
I'm using StackMob with CoreData (remote Database), but I think this is a general Core Data question.
I have 3 entities:
User (login)
Cars
Bikes
Each entity has several attributes.
A User can ...
0
votes
0answers
49 views
Sorting core data to-many relationship in UITableView
I have seen many posts on here regarding this issue but none seem to solve the problem i am having.
I have an app thats using core data. I am trying to sort a tableView thats hooked up to a ...
0
votes
1answer
35 views
Strange iOS 5 FetchedResultsController Predicate issue
This code works fine on iOS 6, but doesn't return any results on iOS 5. The date is set to today with a category method. Can anyone spot anything weird? Thanks!
NSFetchRequest *fetchRequest = ...
3
votes
1answer
78 views
Issue with setting NSSortDescriptor key in NSFetchResultController
With respect to the above relationship diagram, Earlier, I had a too many relationship between Assignment and Question entity and this is broken to fix a question ordering issue.
Now the ...
0
votes
0answers
121 views
uicollection view with core data Invalid update: invalid number of sections
i Have core data DB with 2 entities with one 2 many relationship Category ->> Service
when i add new Service to the DB i want to check if his category already exist in the DB
if so set the Service ...
1
vote
1answer
117 views
Fetch unique core data entities with @max predicate
I have a core data structure like follows:
+-------+-----+---------+
| uid | id | category
+-------+-----+---------+
| 12345 | 1 | 1
| 23456 | 1 | 1
| 34567 | 2 | 1
| 45678 | 2 | 2
| 56789 ...
0
votes
1answer
60 views
NSFetchedResultsController Freezing UI
I am having a problem using NSFetchedResultsController where I cant stop it from freezing the UI. The initial fetch happens quickly but when I fire any fault it causes freezing when scrolling the ...
1
vote
0answers
60 views
Initial fetch for nsfetchedresultscontroller returns 0 objects, subsequent fetches OK
My initial fetch for my NSFetchedResultsController returns O objects. Most of the time (I'd say 9 times out of 10). It's not a bug that's always reproducible.
Sometimes my requirements for the table ...
-1
votes
1answer
225 views
UISearchBar and UITableView and Core Data having dreaded NSInternalInconsistencyException [closed]
Okay - I've literally been trying to solve this on my own since December and I just can't figure it out. I'm cleaning up the question a bit to eliminiate some of the attempts that didn't work.
I have ...
0
votes
1answer
114 views
Insert extra row into UITableView like Tweetbot iOS
I have NSFetchedResultsController like datasource of my UITableView. It displays some entities with predicate from my database. I try to find an elegant solution to insert utility row between my data ...
0
votes
2answers
75 views
How to change value of an attribute of all entities in Core Data at once?
I am building application that has 'checklist' functionality. The checklist item is stored as Core Data entity. There is a 'checked' attribute stored as BOOL in the Datamodel as well. The view ...
0
votes
0answers
36 views
TDBadgedCell + NSFetchedResultsController sometimes shows Badges on wrong rows
I use TDBadgedCell to show Badges on some cells in a table view like the Mail app does. My table view is managed via a NSFetchedResultsController. For the most part everything works a expected.
But ...
0
votes
2answers
145 views
NSFetchedResultsController with indexed UITableViewController and UILocalizedIndexedCollation
I have a table that uses an NSFetchedResultsController. This gets me an index with the headers that are present
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return ...
0
votes
2answers
120 views
Fetching large number of data from CoreData using two NSFetchedResultsController
I am trying to fetch 10000records from CoreData in a UITableView using NSFetchedResultsController and trying to make it as fast as possible (since the request has a sort descriptor it takes longer to ...
0
votes
0answers
71 views
Switch from manual updating to NSFetchedResultsController
My whole app is pretty much table views. Im not using a nsfetchedResultsController, so i am doing all of the tableView work myself. But my main question is:
If i allow my cells to be reordered, they ...
-1
votes
1answer
89 views
Core Data: Fetch
I have a 5 screens. Each screen has options the user choses i.e. via Time & Date picker, and some UIFields that the user will type in. So I created ONE Entity and added all the attributes (25). ...
0
votes
1answer
98 views
UISearchDisplayController animate reloadData
I've been reading all the documentation about UISearchDisplayController and its delegate but I can't find any way to animate the table view when the search criteria change.
I'm using these two ...
0
votes
2answers
65 views
NSFetchedResultsController overwriting last cell on insert
I have an application that uses an NSFetchedResultsController attached to a UITableView.
I'm encountering a very odd problem, in that when an insert is done into the database with a new item that ...
0
votes
1answer
45 views
How deep a tableview structure can a NSFetchedResultsController manage?
I have three entitites in Core Data that are arranged as follows:
Category ->> Entry ->> Field
These three entities are displayed to the user in three subsequent tableviews. The categories are ...
0
votes
1answer
70 views
NSFetchedResultsController -> How to implement sections?
I am having trouble getting sections with a NSFetchedResultsController working. I have an entity, say 'Employee' and a string attribute, let's say 'name'. Now I want to show all employee's names in a ...
0
votes
2answers
121 views
iOS NSFetchedResultsController: sort sections by >=2 properties
I use NSFetchedResultsController to fetch from database with Core Data. And I have an Entity with 2 properties, prop1 and prop2 of NSString.
How would I sort sections not only by one of the properties ...
4
votes
1answer
266 views
CoreData error while updating NSManagedObject from NSFetchedResultscontroller with NSPredicate
We have UITableViewController wich DataSource is a NSFetchedResultsController. After clicking on an object in the UITableView you are directed to an UIViewController where you can set a flag (YES/NO) ...
0
votes
0answers
88 views
UIButton inside custom table view cell not responding when scrolling under NSFetchedResultsController
I'm experiencing an strange behaviour in one of my views. I'm using NSFetchedResultsController to fetch some data from my local storage, and custom UITableViewCells to display some text info, user ...
1
vote
1answer
116 views
NSFetchRequest - Includes Pending Changes
I'm having issues with my NSFetchedResultsController, which seem to be fixed by turning IncludesPendingChanges on, and this worries me. (I've found this to not be true, including pending changes does ...
0
votes
0answers
58 views
NSFetchedResultsController not informed about model changes
Got somehow lost on something what worked in other projects and now stopped working.
I've got a controller (A) (subclass of NSObject) which has a NSFetchedResultsController for entities of class ...
0
votes
1answer
82 views
how to refresh my fetchedresultcontroller after change from other contexts
struggling with multi context core data, I would be very pleased for any help.
After the sync operations finished this block is called:
[[SyncEngine sharedEngine]setFinishedSyncCompletionBlock:^{
...
0
votes
0answers
94 views
Objective-c NSPredicate - Filter by ObjectId across different NSManagedObjectContext
I'm using the code below with my NSFetchedResultController
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"self.objRelationship.ObjectId == %@", objectFromOtherContext.ObjectId];
...
0
votes
0answers
57 views
CoreData NSFetchedResultController not fetching correct data
I have a simple core data entity Person for the parents - child relationship.
It's a multi to multi relation because parents can have multiple childs and childs can have multiple parents.
In my ...
0
votes
1answer
220 views
Implementing NSFetchedResultsSectionInfo
I have fairly large amount of data which I would like to partition into the custom sections, for sections based on some keypath and some other sections on some other conditions. So I came up with ...
1
vote
1answer
113 views
UITableViewController data source from coredata
I have found two ways of populating UITableView with data from coredata. One way is to use NSFetchedResultsController and implement the delegates for update controller:didChangeSection. Other way is ...
0
votes
1answer
170 views
How to ensure UIManagedDocument is ready before NSFetchedResultsController method is called?
I am totally stuck on this one. My basic problem is that my:
- (NSFetchedResultsController *)fetchedResultsController
Method is crashing when it tries to read my Core Core entity, as the ...
0
votes
2answers
91 views
How to clear NSFetchedResultsController?
If I perform a fetch w/ a NSFetchedResultsController that returns objects and then want to clear the controller, i.e., have .fetchedObjects be an empty array, is there a method that can be called or ...
3
votes
1answer
290 views
Locations in Core Data sorted by distance via NSFetchedResultsController?
I have a set of entity objects in my iOS Core Data database that describe something at a location. Let's call the entity Location. I have implemented this by having two attributes on Location that ...
0
votes
0answers
117 views
Problems with CoreData in my iPhone Facebook App
I'm creating a app to get Facebook friends a store some data persistently.
I created two entities Friend and Myself.
@interface Myself : NSManagedObject
@property (nonatomic, retain) NSString * ...
1
vote
1answer
98 views
NSFetchedResultsControllerDelegate incomprehensible behavior in GCD managed enviroment
I have CoreData and table with related NSFetchedResultsController. Controller has context, which created in main queue and works readonly. Of course, tableviewcontroller implement ...
0
votes
0answers
202 views
RestKit / Core Data: NSFetchedResultsController does not recognize changes of mapped objects
Just a short overview on what my problem refers to. The data model is based on two NSManagedObject classes called "Customer" and "Reservation". The JSON I get from the web service looks like this:
...
1
vote
3answers
322 views
NSFetchedResultsController fetchedObjects are sorted incorrectly after adding a new object
I have a pretty standard app with a UITableViewController that extends CoreDataTableViewController
from the CS193P stanford class (which is simply an extension of UITableViewController implementing
...
0
votes
1answer
189 views
NSFetchedResultsController with date as predicate
Scenario:
I have an expense tracking iOS Application and I am storing expenses from a expense detail view controller into a table view (with fetched results controller) that shows the list of ...
0
votes
0answers
60 views
How to pass fetchedObject to another viewController proper? [SOLVED]
enter code hereI'm working on an application with Code Data model. The store is prefilled with data i get from the bundle. The model has two entities: Theme and Sound and relations between them. One ...
1
vote
1answer
161 views
Using search bar scope in core data
I have two entities in core data with one to many relationship between them (Dream has one to many relationship with symbols). I have also provided search functionality by using predicate and the ...
0
votes
1answer
74 views
How can I load a fetchResultsController without using insertRowsAtIndexPaths?
I am iterating through an array of text, with each iteration I am:
creating a managed object using initWithEntity:insertIntoManagedObjectContext
parsing text
determining the display order
With the ...




