That is very disappointing. So if I want to offer predefined values to assign to an NSString I have to use a SegmentedControl?
I have far too many options to use a segmented control. Is there a work around? I bought this library for a project that must be completed in several days.
I am looking at how to update the code myself. Here is the section of interest and notes. This seems like a major oversight to me. Please help.
* There are three ways to set/retrieve the section's selection:
* - Through binding an object to the section, and specifying a property name to bind the selection
* result to. The bound property must be of type NSMutableSet.
* - Through binding a key to the section and setting/retrieving through the ownerTableViewModel modelKeyValues property.
* - Through the selectedItemsIndexes property.
*
* See also: SCSelectionCell.
*/
@interface SCSelectionSection : SCArrayOfItemsSection
{
BOOL allowMultipleSelection;
BOOL allowNoSelection;
NSMutableSet *_selectedItemsIndexes;
}