Skip to content

Instantly share code, notes, and snippets.

View cocoaNib's full-sized avatar

Renate Wünschl cocoaNib

  • Hamburg, Germany
View GitHub Profile
@cocoaNib
cocoaNib / Singleton.swift
Created September 25, 2015 13:21
Singleton swift
class Singelton {
static let sharedInstance = Singelton()
private init(){}
}
// Learned from this great blog post
// http://krakendev.io/blog/the-right-way-to-write-a-singleton
@cocoaNib
cocoaNib / ToggleStatusBarViewController.swift
Created July 22, 2015 08:34
Toggle StatusBar Example
//
// ToggleStatusBarViewController.swift
// UIKitExamples
//
// Created by Renate Wünschl on 22.07.15.
// Copyright (c) 2015 cocoanib. All rights reserved.
//
import UIKit