-1
我嘗試下面的代碼:如何爲ios目標C中的動畫循環uiview添加陰影?
View.layer.shadowRadius = 10.0f;
View.layer.shadowColor = [UIColor blackColor].CGColor;
View.layer.shadowOffset = CGSizeMake(5.0, 10.0);
View.layer.shadowPath = [UIBezierPath bezierPathWithRoundedRect:View.bounds cornerRadius:100.0].CGPath;
,但它不工作。
非常感謝。
什麼是 「不工作」 是什麼意思?它會崩潰嗎? (日誌在哪裏?)它看起來不正確嗎? (屏幕截圖在哪裏?)當您嘗試運行手機時,手機是否會融化? Xcode會崩潰嗎?解釋「不工作」的含義。 – Fogmeister
您是否將masksToBounds設置爲您的視圖? – vishnuvarthan
檢查視圖在陰影上不重疊。或嘗試分享更多的代碼 –