Skip to content

Instantly share code, notes, and snippets.

View mposada's full-sized avatar
🐘

Miguel Posada mposada

🐘
View GitHub Profile
@bolivarbryan
bolivarbryan / TheMovieDatabase.swift
Last active May 10, 2018 20:59
The MovieDatabase Parser
import UIKit
var json = """
{
"results": [
{
"vote_average": 7.4,
"vote_count": 6066,
"id": 284053,
@bolivarbryan
bolivarbryan / BBLabel.swift
Last active May 10, 2018 19:44
UILabel component, ready to use
import UIKit
class BBLabel: UILabel {
enum FontSize: CGFloat {
case small = 12.0
case medium = 14.0
case large = 30.0
}