Tagged Questions
0
votes
3answers
165 views
iPhone Core Data how to add date sections to events with timestamps?
I have two types of Events stored in my core data stack, each one having a timestamp. I'm interested if there's a good way to display these records in a UITableView with sections, where each section ...
2
votes
1answer
151 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 ...
0
votes
1answer
374 views
UITableView Sections based on Core Data attribute
In my app, I have a UITableView that is populated by Core Data, currently a string called "name." I want to be able to divide this tableview into 3 sections, which could be named 0, 1 and 2, or 1, 2 ...
0
votes
1answer
239 views
How to rearrange sections, when using Core Data
Is there any way I can rearrange the sections of a Table View that uses Core Data, without using a Sort Descriptor?
The kind of sort I need is not alphabetical, and it'll vary on time (I have read ...
0
votes
2answers
739 views
change the color of UITableView section title
i have TableView with Sections, the sections are Countries and i fetch them from my core data entity. i set a background image for my tableview and now i want to change the title color of the section. ...
2
votes
1answer
105 views
how to set Section with String @“XYZ” as first section in tableview
I am populating my TableView with data from coreData.
I want to set an Section with a special String as always the first Section in the TableView.
How can i do that?
1
vote
2answers
494 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 ...
1
vote
1answer
172 views
How do i implement section in core data for mac?
iOS provides NSFetchedResultsController class with sectioning support:
NSFetchedResultsController *aFetchedResultsController =
[[NSFetchedResultsController alloc]
...
3
votes
1answer
969 views
Whole alphabet for sections index in core data
I've implemented a table populated with core data and now I'm trying to indexing it with sections by displaying the side Alphabet (in Contacts like format).
In the code below, if I use the commented ...
0
votes
2answers
785 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
477 views
Date Section Titles don't work
I have a problem on a tableview with section by date.
I took the Apple example : DateSectionTitles
I don't care about year. I ust need month and day.
So I adapt my code like that :
In my CoreData ...
1
vote
1answer
444 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"];
...
0
votes
1answer
278 views
Managing dates in Section Headers with Core Data
I have conceptual issue with using core data. My app lists events by title in the main tableview then navigates to a tableview which is unique to the event. Here it's supposed to display in the ...
0
votes
2answers
1k views
Core Data: Can relationship be used for sectionNameKeyPath?
I am trying to do exactly same thing as post in NSFetchResultsController + sectionNameKeyPath + section order, i.e. basically use 2 tables, let's say Categories <-->> Events. Category table ...
1
vote
2answers
321 views
hardcoded Tablecells in section 0, core-data fetched-results in section 1
my problem ist that i have UITableView with two sections.
In the first section i have objects of a NSArray and the second section should be filled with core-data results.
But if i use the ...
2
votes
2answers
1k views
Grouping core data tableView rows in manually created sections
I have a Company entity with about 20 fields and I'm wanting to use a grouped tableView with manually created section headers (ie: General, Financial, Misc.), but I am unsure of how to make Core Data ...
2
votes
1answer
827 views
Tableview with sections per day (with Core Data)
I have quite an ordinary RSS-reader type App.
The objects in the Core Data have a pubDate attribute which is the exact date + time of publishing. Using this for sections gives every article its own ...
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 = ...
0
votes
1answer
163 views
Create a timetable with CoreData
I'm new to Stack Overflow and have my first question.
I want to develop an application with a timetable. I've one UITableViewController and one CoreData entity called 'SchoolClass'. With arrow ...
0
votes
1answer
279 views
Core Data: changes to section
I am quite familiar with regular usage patterns of Core Data, but recently stumbled upon a problem: Imagine a simple case where I have an Entity of person, with 2 string attributes name and company. I ...
2
votes
1answer
2k views
iPhone CoreData: How to group fetched results by day?
I am developing an iPhone App with CoreData. One of my entities has an NSDate property named 'time'. It stores times to the minute/second. As my sections i'd like to have the date to the day. So if ...
1
vote
1answer
4k views
how to create custom sections in a tableview based on coredata entities
I'm just starting to learn coredata. In my core data model I have a date stamp (of type NSDate) which includes the date and time (I need this information). Now I would like to organize the Core Data ...
