开发者

How do i navigate to another view through a button in a NSTableCell?

开发者 https://www.devze.com 2023-03-16 07:01 出处:网络
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 s

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];
0

精彩评论

暂无评论...
验证码 换一张
取 消