我已经卷曲了主屏幕以显示 UITableView,当我单击表格单元格时,我正在打开一个新视图,如下所示:
if ([[tableData objectAtIndex:indexPath.row] isEqual:@"Filter Results"]){
FilterViewController *dw = [[FilterViewController alloc] initWithNibName:nil bundle:nil];
dw.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentViewController:dw animated:YES completion:nil];
}
然而,这会在 curl 而不是整个页面中打开视图。有没有办法打开它而不是留在卷曲中?