This is the code I have used to setup the selection cell.
SCSelectionCell *ruhsatCell = [SCSelectionCell cellWithText:@"Ruhsat Sahibi"
withBoundObject:mycar
withSelectedIndexesPropertyName:@"ruhsatsahibi"
withItems:[NSArray arrayWithObjects:@"Firma", @"Kişi", nil]
allowMultipleSelection:FALSE];
ruhsatCell.displaySelection = TRUE;
[section1 addCell:ruhsatCell];
And this is the code for the property in the class definition of the object.
@property (nonatomic, copy) NSString *ruhsatsahibi;
Thanks for your help.