0
我用下面的代碼雙層陰影上缺少的iPad3(但在模擬器工作)
self.view.layer.borderColor = [UIColor whiteColor].CGColor;
self.view.layer.shadowColor = [UIColor blackColor].CGColor;
self.view.layer.shadowOpacity = 1.0;
self.view.layer.shadowRadius = 25.0;
self.view.layer.shadowOffset = CGSizeMake(0, 3);
self.view.clipsToBounds = NO;
CGPathRef shadowPath = [UIBezierPath bezierPathWithRect:self.view.layer.bounds].CGPath;
[self.view.layer setShadowPath:shadowPath];
這工作在模擬器和iPhone5的應該畫一個UIView後面的陰影。但是在我的iPad3上:根本沒有影子。
任何想法怎麼來的?