objective c - Reload TableView not working on OSX -
i've experience in ios, not on os x. have tableview should dynamically updated. i'm using method reload table
[self.tableview reloaddata];
and invoke delegate
- (nsview *)tableview:(nstableview *)tableview viewfortablecolumn:(nstablecolumn *)tablecolumn row:(nsinteger)row { // new viewcell nstablecellview *cellview = [tableview makeviewwithidentifier:@"datacolumn" owner:self]; ... return cellview; }
but doesn't. how reload tableview?
thanks in advance
Comments
Post a Comment