hi again
Thanks for the fast reply.
i have tried what you suggested and it does not work.
i have checked the documentation and saw that property.
but when i am using it i get the -
" error: request for member 'detailTableViewStyle' in something not a structure or union"
i have noticed that the code hinting does not showing that property too.
any thing i am doing wrong?
here is my code -
//categories & note settings cells
SCTableViewSection *categoriesSection = [SCTableViewSection sectionWithHeaderTitle:nil];
[tableModel addSection:categoriesSection];
SCSelectionCell *presetCategoriesCell = [SCSelectionCell cellWithText:NSLocalizedString(@"Change category",@"") withBoundKey:@"category" withSelectedIndexesValue:nil withItems:categories allowMultipleSelection:NO];
presetCategoriesCell.detailTableViewStyle = UITableViewStyleGrouped;
presetCategoriesCell.detailViewTitle = @"Change Category";
NSMutableArray * images = [[NSMutableArray alloc] init];
for(int i=0;i<[categories count];i++){
// UIImage *img = [UIImage imageNamed:@"Work_l.png"]
imageView=nil;
imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:[categories objectAtIndex:i]]];
[images addObject:imageView];
[imageView release];
}
presetCategoriesCell.detailCellsImageViews =images;
[categoriesSection addCell:presetCategoriesCell];
shani