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 Aug 26, 2015 via iPhone
为了宣传戳子科技,楼主也是蛮拼的
|
2
allenforrest Aug 27, 2015
url?
|
3
pheyer Aug 27, 2015
链接也不放一个。。。
|
5
jianleer OP |
6
jianleer OP |