Skip to content

Instantly share code, notes, and snippets.

View MaatheusGois's full-sized avatar
🎯
Focusing

Matheus Gois MaatheusGois

🎯
Focusing
View GitHub Profile
@MaatheusGois
MaatheusGois / GradientLayer.md
Created April 13, 2022 17:49 — forked from hcn1519/GradientLayer.md
UITableViewCell with GradientLayer in swift

Create GradientLayer on your tableViewCell(collectionViewCell)

1. Create CAGradientLayer Instance on your tableViewCell

class MyCell: UITableViewCell {
    let gradientLayer = CAGradientLayer()
}