0
votes
2answers
128 views

Multiple sections in UITableView

Actually i'm using only one section. I sort my data stored in core data by date. I want to have two sections (latest and history). In my first section "latest" I want to put my latest date and in ...
2
votes
1answer
155 views

NSFetchedResultsController has 0 sections

I'm having a problem I don't know where it comes from, related to CoreData. In my database, a have a set of categories (with name and description), which contain elements (using a one-to-many ...
2
votes
1answer
288 views

iOS: How to sort rows in specific Section of uitableview

i am populating my tableview with nsfetchedresultscontroller. i am using an nssortdescriptor to sort the sections and rows. actually i am sorting from new to old. But now, i want only to sort the ...
1
vote
2answers
498 views

divide fetched results NSDate into sections for each single day use core data

I know that fetched results controller have the section name key path can divide fetched results into sections. But how could I divide NSDate into sections for each day or each month? Or any other ...
0
votes
1answer
224 views

Create a sectioned UITableView using NSFetchedResultsController

I am trying to create a UITableView with two different sections. I know I can group them on an attribute of my managed object. For instance if I'd like to group them per name I'd do: ...
1
vote
1answer
173 views

How do i implement section in core data for mac?

iOS provides NSFetchedResultsController class with sectioning support: NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] ...
0
votes
2answers
796 views

NSFetchedResultsController - out of order section error

I’m setting an NSFetchedResultsController with the sort descriptor sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@”name” ascending:YES selector:@selector(caseInsensitiveCompare:)]; And the ...
1
vote
1answer
448 views

CoreData: transient property and localizedCaseInsensitiveCompare

In coredata, i have a transient property to use has sections. The transient property code is here: - (NSString *) firstLetter_transient { [self willAccessValueForKey:@"firstLetter_transient"]; ...
1
vote
1answer
273 views

Table view section headers not updating

ViewA lists data grouped by section, and when you select a row you go to ViewB. After potentially editing several fields, you use the back button to go back to ViewA. If the attribute used as the ...
1
vote
1answer
1k views

NSFetchedResultsController Section Index is going to the wrong row

I've got a FRC with sections. I've implemented the section index (just like in 6 other views where it works), and it shows; however, when I tap on one of the indexes it goes to the middle and stops. ...
10
votes
4answers
6k views

A NSFetchedResultsController with date as sectionNameKeyPath

I develop an application which uses Core Data. In one UITableView, I want to display a list of my entities, sorted by the saved date of the objects. When I do this: fetchedResultsController = ...