3
votes
2answers
209 views
Design pattern for Core Data iPhone App
Hi
Im building an app that will use a Core Data model. I pretty new at Objective C and my usual design patterns does not really apply on Core Data and Objective C, at least I can't seem to find …
1
vote
1answer
181 views
Core Data backed UITableView with indexing
I am trying to implement a Core Data backed UITableView that supports indexing (eg: the characters that appear down the side, and the section headers that go with them). I have no problems at all …
1
vote
1answer
48 views
tableView and normal view (same data object)
Hi guys,
I don't know how i can share the same data between two tab bar items.
One tab uses nsfetchedresultscontroller and the other table is just a normal view that should use the same data as my …
1
vote
1answer
132 views
How to observe managed object context
Hi,
Whenever i make a change in the objects in the first tab of my application the updates are automatically upated in tab 2 becuase it uses a fetchedResultsController. Now i have a third tab that …
1
vote
1answer
152 views
Is NSFetchedResultsControllerDelegate ‘ChangeUpdate’ behavior broken?
The docs for NSFetchedResultsControllerDelegate provide the following sample code
- (void)controller:(NSFetchedResultsController *)controller
didChangeObject:(id)anObject
…
0
votes
0answers
12 views
How to override sectionForSectionIndexTitle using core data and FetchResultsController
Using core data and fetchedResultsController I'm trying to create a tableview which will display the day and date in the section head then index the results using the value of the month displayed in …
0
votes
0answers
9 views
Error when deleting from an NSFetchedResultsController controlled UITableView outside of the table view
I'm trying to remove an object managed by an NSFetchedResultsController in a UITableView - and I'm attempting to do so from a separate view via add/remove buttons. However, it seems as though …
0
votes
1answer
25 views
NSFetchedResultsController ERROR:
Afetr inserting a new record into my CoreData store using an NSFetchedResultsController, when I then try to display the data in a grouped UITableView the app crashes with the following error"
…
0
votes
3answers
24 views
NSfetchedResultsControllerDelegate crashed tableview
Hello everyone,
I'm using the NSFetchedResultsControllerDelegate to update my tableview.
For example,
//Now tableview doesn't have any record.
2009-11-15 12:25:48.328 XXX[36890:207] 0 //num sections …
0
votes
2answers
54 views
Changing the Sorting in an NSFetchedResultsController on the fly
I'm trying to change the sorting in a NSFetchController on the fly, by some sort of segmented control. To either sort A->Z Z->A type thing.
What do I have to do to do this? I'm following Jeff …
0
votes
2answers
120 views
How do you handle section inserts with an NSFetchedResultsController?
I've got an NSFetchedResultsController as my data source and and I implement NSFetchedResultsControllerDelegate in my custom UITableViewController. I'm using sectionNameKeyPath to break my result set …
0
votes
2answers
97 views
Illegal attempt to establish a relationship ‘xyz’ between objects in different contexts
I am using Apple's CoreDataBooks sample application as a basis for pulling data into a secondary managed object context in the background, and then merging that data into the primary managed object …
0
votes
0answers
80 views
UITableView insertRowsAtIndexPaths: is not updating the table when called from NSFetechedResultsController didChangeObject:
Good Morning,
Im hoping someone can help me with an issue im having with updating a tableview via the insertRowsAtIndexPaths: method.
I am calling a resource on the internet and creating entities …
0
votes
4answers
227 views
NSFetchedResultsController with search
What is the best practice to filter the NSFetchedResultsController data?
do i need to re-initialize it every time the searchbar's text changes?
I am using a UISearchDisplayControllers and i'm …
0
votes
1answer
44 views
iphone fetchRequest sub entities?
If i fetch data from "parent" and assign it to a fetchresultscontroller, i still have to call
[parent.images allObjects]
in my cellForRowAtIndexPath to get to the child data.
Is this a normal thing …
