ios - Partial Page Curl, open new view full size -


i have curled main screen show uitableview, when click on table cell opening new view so:

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

however opens view in curl rather whole page. there way open , not stay within curl?


Comments