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 }
你可以调整价值,你将获得完美的阴影!
希望能帮助到你!
总结以上是内存溢出为你收集整理的ios – 带角半径和阴影的SWIFT UITableViewCell全部内容,希望文章能够帮你解决ios – 带角半径和阴影的SWIFT UITableViewCell所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)