I want my modal style of the UIModalPresentationFormSheet
style to UIModalPresentationFormSheet
become the UIModalPresentationFormSheet
style, but when it has already been shown with the UIModalPresentationFormSheet
type, it cannot go into full-screen mode using the code " [xx setModalPresentationStyle:UIModalPresentationFullScreen];
Is there any way to change the real style after showing the modal look? My code is:
UITableDownload* vc = [[UITableDownload alloc] initWithStyle:UITableViewStylePlain]; UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc]; [nav setModalPresentationStyle:UIModalPresentationFormSheet]; [MainAppDelegate mainBrowserViewController] presentModalViewController:nav animated:YES]; ...
source share