ios7 - iOS present透明问题
PHP中文网
PHP中文网 2017-04-18 09:22:19
0
0
279

想要达到present透明效果,并且采用系统自身的属性

SecondViewController *vc = [SecondViewController new];

NSString * systemVersion =[[UIDevice currentDevice]systemVersion];
CGFloat fVersion =[systemVersion floatValue];
if (fVersion < 8) {
    vc.modalPresentationStyle = UIModalPresentationCurrentContext;
    self.modalPresentationStyle = UIModalPresentationCurrentContext;
}else{
    vc.modalPresentationStyle = UIModalPresentationOverCurrentContext;
}
vc.modalTransitionStyle = UIModalTransitionStyleCoverVertical;

[self presentViewController:vc animated:YES completion:nil];

结果iOS8上面是没有问题的,从下面跟着背景一起上来,透明效果nice。但是我目前就一个iOS7.1.2的设备,它只会直接出来透明,不会从下面移动上来,设了别的属性从下面上来但是背景又变黑了,怎么样才能从下面上来,背景又不变黑呢。

PHP中文网
PHP中文网

认证高级PHP讲师

모든 응답(0)
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!