UITableView部分阴影

时间:2016-03-28 12:30:10

标签: ios swift uitableview

如何在UITableViewController中实现tableView部分阴影。

1 个答案:

答案 0 :(得分:4)

添加此方法以获取UITableView部分的阴影 这个答案在Swift3中

func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
    let shadowView = UIView()
    let gradient = CAGradientLayer()
    gradient.frame.size = CGSize(width: tableView.bounds.width, height: 15)

    let stopColor = UIColor.gray.cgColor    
    let startColor = UIColor.white.cgColor    

    gradient.colors = [stopColor, startColor]    
    gradient.locations = [0.0,0.8]

    shadowView.layer.addSublayer(gradient)    

    return shadowView
}