Skip to content

Instantly share code, notes, and snippets.

View aerialcombat's full-sized avatar
🎯
Focusing

aerialcombat

🎯
Focusing
View GitHub Profile
@sundeepgupta
sundeepgupta / animated-ellipsis.swift
Created March 2, 2017 19:35
Swift Animating Ellipsis Loader
class LoadingLabel: UILabel {
var timer: Timer?
let states = [".", "..", "..."]
var currentState = 0
func start() {
stop(withText: "")
timer = Timer.scheduledTimer(timeInterval: 0.3, target: self, selector: #selector(update), userInfo: nil, repeats: true)
timer?.fire()