2017-02-27 174 views
-1

我有兩個UIViews與拐角半徑重疊。他們有相同的顏色。我試圖找出,如何防止拐角半徑做出一個稍微黑暗的「邊框中風」有誰知道如何防止這種情況?移除拐角半徑處的陰影/邊界線iOS

var topHistoryLine : UIView 
var bottomHistoryLine :UIView 

    topHistoryLine.layer.clipsToBounds = topHistoryLine.bounds.width/2 
    topHistoryLine.clipsToBounds = true 
    bottomHistoryLine.layer.cornerRadius = bottomHistoryLine.bounds.width/2 
    bottomHistoryLine.clipsToBounds = true 
    topHistoryLine.layer.shadowOpacity = 0.0 
    bottomHistoryLine.layer.shadowOpacity = 0.0 

Example

+2

添加代碼。圖像根本不清楚。 – hasan83

+0

添加代碼;)。圖像放大很多,使較暗的線條可見。這是一個非常小的細節,幾乎不可能看到。 –

回答

0
View.layer.shadowOpacity = 0.0 
View.layer.shadowRadius = 0.0 
View.layer.shadowColor = UIColor.clear 
+0

不起作用... :( –

+0

嘗試更新回答 –

+0

它接縫不像它的陰影偏好,但視圖本身,調整顏色,使曲線看起來更好。 –