2017-11-05 17 views

답변

1

당신이 당신의 완벽한보기를 얻을 때까지 당신은 그림자와 둥근 모서리에 대한이 코드를 사용하여 값을 조정할 수 있습니다 4

스위프트 :

override func tableView(_ tableView: UICollectionView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 

    let cell = tableView.dequeueReusableCell(withReuseIdentifier: "cell", for: indexPath) 
    cell.layer.cornerRadius = 10 
    let shadowPath2 = UIBezierPath(rect: cell.bounds) 
    cell.layer.masksToBounds = false 
    cell.layer.shadowColor = UIColor.black.cgColor 
    cell.layer.shadowOffset = CGSize(width: CGFloat(1.0), height: CGFloat(3.0)) 
    cell.layer.shadowOpacity = 0.5 
    cell.layer.shadowPath = shadowPath2.cgPath 
    return cell 
} 

희망이 도움이 :)

출처 : https://stackoverflow.com/a/42456157/6596799