Skip to content

Instantly share code, notes, and snippets.

View designerGenes's full-sized avatar
🏠
Working from home

Jaden Nation designerGenes

🏠
Working from home
  • Designer Jeans
  • Dallas, TX
View GitHub Profile

Keybase proof

I hereby claim:

  • I am designergenes on github.
  • I am jadennation (https://keybase.io/jadennation) on keybase.
  • I have a public key ASCwM4AIR0p6SISkkirOo8C8bZvr63EwcujvAbJ85hL6AAo

To claim this, I am signing this object:

import UIKit
protocol ActivityIndicatorType {
func startAnimating()
func stopAnimating()
var isAnimating: Bool { get set }
}
class CustomActivityIndicator: UIView, ActivityIndicatorType {
@designerGenes
designerGenes / customActivityIndicator.swift
Last active December 16, 2016 23:33
A custom activity indicator because regular activity indicators are no good
import UIKit
protocol ActivityIndicatorType {
func startAnimating()
func stopAnimating()
var isAnimating: Bool { get set }
}
class CustomActivityIndicator: UIView, ActivityIndicatorType {