Skip to content

Instantly share code, notes, and snippets.

@scott-lydon
Created July 3, 2018 23:52
Show Gist options
  • Save scott-lydon/67b3460b2a615556806f09480b321cfd to your computer and use it in GitHub Desktop.
Save scott-lydon/67b3460b2a615556806f09480b321cfd to your computer and use it in GitHub Desktop.
import UIKit
class ShimmerView: UIView {
override init(frame: CGRect) {
super.init(frame: frame)
setupViews()
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
setupViews()
}
func setupViews() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment