Created
January 7, 2019 21:35
-
-
Save uknowmeright/499103e678c761c92d71e653be7c7496 to your computer and use it in GitHub Desktop.
global variables #tags: global, swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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