UIModalPresentationStyle
프리젠테이션 스타일은 뷰 컨트롤러가 화면에 표시되는 모양을 제어 합니다. 프레젠테이션하려는 뷰컨트롤러의 modalPresentationStyle 속성에 적절한 상수를 할당하면 됩니다. # 전체화면 프레젠테이션 스타일 UIModalPresentationFullScreen, UIModalPresentationPageSheet, UIModalPresentationFormSheet # 팝오버 스타일 UIModalPresentationPopover, UIModalPresentationOverFullScreen # 현재 컨텍스트 스타일 UIModalPresentationCurrentContext, # 사용자정의 프레젠테이션 스타일 UIModalPresentationCustom # UIModalPresentation..
2022.04.07