cocoa - Prototype dataCell for view based tables -
cocoa - Prototype dataCell for view based tables -
for view based tables cells this:
nsstring *identifier = [tablecolumn identifier]; nstablecellview *cell = [tableview makeviewwithidentifier:identifier owner:self];
however there settings "editable" want set cells of specific column. not want clutter cell configuration code setting value every time retrieve cell. instead mutual configuration awakefromnib function , mutual manipulations every cell of column. can visually in xcode
my first approach this:
nstablecolumn *column = [[self tablecolumns] objectatindex:0]; nstextfieldcell *cell = [column datacell]; [cell seteditable:@yes];
however datacell works cell based tables. there equivalent prototype cell of column view based tables?
cocoa nstableview
Comments
Post a Comment