Hi,
The situation:
I fetch a complete table from my sqllite core data database and show it in a TableView like this:
NSEntityDescription *entity = [NSEntityDescription entityForName:@"MyTable"
inManagedObjectContext:managedObjectContext];
The Challenge:
How do I get the EntryID and fetch the specific entry from the database (e.g. if i click on an entry)? I think this goes in the right direction?
NSPredicate *predicate = [NSPredicate predicateWithFormat: @"(id = %@)", myEntryID];