Skip to content

Instantly share code, notes, and snippets.

@uknowmeright
Created January 7, 2019 21:35
Show Gist options
  • Save uknowmeright/499103e678c761c92d71e653be7c7496 to your computer and use it in GitHub Desktop.
Save uknowmeright/499103e678c761c92d71e653be7c7496 to your computer and use it in GitHub Desktop.
global variables #tags: global, swift
//
// global.swift
//
// Created by Paul Lehn on 1/4/18.
// Copyright © 2018 Paul Lehn. All rights reserved.
//
import Foundation
struct global {
static var theArray = ["1", "2", "3"]
static var navTitleFont = UIFont.boldSystemFont(ofSize: 22)
static var loggedInUser = AUser()
static var formFontSize : CGFloat = 16
static var imageUploadQuality : UIImage.JPEGQuality = .low
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment