I want to run a method called availableKeys which just returns an NSArray of keypaths for that Entity.
I will be creating a picker of keys that are pre determined. I was going to use the UserInfo but it made EOModeler act a bit funny.
public NSMutableDictionary availableKeys(){
if(availableKeys == null){
availableKeys.takeValueForKeyPath("Name", "name”);
availableKeys.takeValueForKeyPath("--- Dates ---", "-DATES-");
availableKeys.takeValueForKeyPath("Active Date", "activeDt");
}
return availableKeys;
}
So in my “Generic” pick list component I want to pass in the displayGroup, let them pick the columns of the report, and then process.