Hi community,
i'm very new to the iphone app development and at the moments it`s just for fun to learn all the things round about it. And now, i have a first question:
I save some data in core data and list the entrys in my rootviewcontroller. I name the entrys "account". On my rootContollerView i need 2 sections from this one entity. the first section is for displaying relevant data on tab on a cell, and the second section make the entry editable on tab on a cell. I receive the data from fetchedResultController. Now i tought i can use a second NSSortDescription for use in my fetchRequest, but nothing happens:
Code:
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"accountName" ascending:NO];
NSSortDescriptor *sortDescriptor1 = [[NSSortDescriptor alloc] initWithKey:@"accountName" ascending:NO];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, sortDescriptor1, nil];
Now im a little bit confused... has somebody a hint for me?
THX and kind regards
Manfred