我有一个表格视图,其中加载了自定义单元格。自定义单元格有一个单击按钮,点击该按钮将打开一个选择器视图,其中有可供选择的选项。
问题是 modalViewController 方法不起作用,它给出了以下错误。
Selector *sel = [[Selector alloc]initWithNibName:@"Selector" bundle:nil];
[self PresentModalViewController:sel animated:YES];
error:property presentModalViewController not found on object of type CustomCell *...and selector is the pickerview controller class...the method is written in ibaction function in customcell.m file
v 如何从自定义单元格调用其他视图?
谢谢