我有一個很奇怪的問題,當談到創造了美麗的框架QuartzCore陰影。影着QuartzCore在iPad上
當我把下面的代碼中viewDidLoad中和在iPhone模擬器它完美運行它,但是當我嘗試在iPad的模擬器中運行的影子是不存在的。
self.viewAboutContainer.layer.shadowColor = [[UIColor blackColor] CGColor];
self.viewAboutContainer.layer.shadowOpacity = 0.7;
self.viewAboutContainer.layer.shadowRadius = 4.0;
self.viewAboutContainer.layer.shadowOffset = CGSizeMake(5.0f, 5.0f);
self.viewAboutContainer.layer.shadowPath = [UIBezierPath bezierPathWithRect:self.viewAboutContainer.bounds].CGPath;
這裏奇怪的一部分,當我將代碼移動從viewDidLoad中到viewWillAppear中一切完美的iPad模擬器爲好。
能有人向我解釋爲什麼?