self.view.window.rootViewController.modalPresentationStyle = UIModalPresentationCurrentContext;//半透明
CocoaPickerViewController *transparentView = [[CocoaPickerViewController alloc] init];
transparentView.delegate = self;
transparentView.modalPresentationStyle = UIModalPresentationOverFullScreen;
transparentView.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
transparentView.view.frame=self.view.frame;
transparentView.view.backgroundColor=[[UIColor blackColor] colorWithAlphaComponent:.5];
transparentView.view.superview.backgroundColor = [UIColor clearColor];
[self presentViewController:transparentView animated:YES completion:nil];
}];

1
PHPwind 2015 年 8 月 26 日 via iPhone
为了宣传戳子科技,楼主也是蛮拼的
|
2
allenforrest 2015 年 8 月 27 日
url?
|
3
pheyer 2015 年 8 月 27 日
链接也不放一个。。。
|
5
jianleer OP |
6
jianleer OP |