Skip to content

Instantly share code, notes, and snippets.

@yuriiik
yuriiik / InnerShadowView.swift
Created November 24, 2024 21:04 — forked from mathebox/InnerShadowView.swift
UIView with inner shadow in Swift
import UIKit
class InnerShadowView: UIView {
lazy var innerShadowLayer: CAShapeLayer = {
let shadowLayer = CAShapeLayer()
shadowLayer.shadowColor = UIColor.black.cgColor
shadowLayer.shadowOffset = CGSize(width: 0.0, height: 0.0)
shadowLayer.shadowOpacity = 0.1
shadowLayer.shadowRadius = 14