How do i navigate to another view through a button in a NSTableCell?
I have got a Button in a custom table cell, with which I want to naviga开发者_JS百科te to a view. But this view has to be different to the view you get if you simply press the TableCell. Has anybody solved this before?
You can push another view in button click event
Eg:
[self.navigationController pushViewController:viewController animated:YES];
精彩评论