我试图在我的 UISplitViewController 的详细视图上设置一个阴影,我希望在 iOS 6 中的主视图上可见。
在我的详细视图控制器中:
self.view.layer.shadowColor = [[UIColor blackColor] CGColor];
self.view.layer.shadowOffset = CGSizeMake(-3.0f, 0.0f);
self.view.layer.shadowRadius = 3.0f;
self.view.layer.shadowOpacity = 1.0f;
self.view.layer.masksToBounds = NO;
self.view.clipsToBounds = NO;
但是,即使我在上面的代码中将其设置为 NO,SplitVC 也会自动裁剪其子视图,并且没有阴影。
谁能让我知道实现这一目标的正确方法?