1
UIModalPresentationPageSheet
이 iOS8에서 작동하지 않습니다.UIModalPresentationPageSheet iOS8에서 다른보기를 제공합니다.
MyViewController *myViewController=[[MyViewController alloc] init];
myViewController.modalPresentationStyle = UIModalPresentationPageSheet;
[self presentViewController:myViewController animated:YES completion:nil];
이 코드는 iOS6 및 iOS7에서 정상적으로 작동합니다. 하지만 iOS8을 사용하면 UIModalPresentationFullScreen
처럼 전체 화면보기를 제공합니다.
iOS8에서 iOS7- UIModalPresentationPageSheet
과 유사한 화면을 표시하려면 어떻게해야하나요? 미리 감사드립니다.
답장을 보내 주셔서 감사합니다 .... –