0
iOS Swift에서 모든 섹션 (셀 그룹) 주위에 그림자를 설정하고 싶습니다. 이처럼 :
iOS Swift 4의 UITableView 섹션에서 그림자를 설정하는 방법은 무엇입니까?
iOS Swift에서 모든 섹션 (셀 그룹) 주위에 그림자를 설정하고 싶습니다. 이처럼 :
iOS Swift 4의 UITableView 섹션에서 그림자를 설정하는 방법은 무엇입니까?
당신이 당신의 완벽한보기를 얻을 때까지 당신은 그림자와 둥근 모서리에 대한이 코드를 사용하여 값을 조정할 수 있습니다 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://github.com/schluete/GroupedTableViewWithShadows –