iOS presentViewController 的样式

UIModalPresentationFullScreen

        TPSelectZoneViewController *selectZone = [[TPSelectZoneViewController alloc] init];
            selectZone.modalPresentationStyle = UIModalPresentationFullScreen;
            [weakSelf presentViewController:selectZone
                                   animated:YES
                                 completion:nil];

效果如图
请添加图片描述

UIModalPresentationPageSheet

           TPSelectZoneViewController *selectZone = [[TPSelectZoneViewController alloc] init];
            selectZone.modalPresentationStyle = UIModalPresentationPageSheet;
            [weakSelf presentViewController:selectZone
                                   animated:YES
                                 completion:nil];

请添加图片描述

猜你喜欢

转载自blog.csdn.net/LIUXIAOXIAOBO/article/details/121102047