Skip to content

Instantly share code, notes, and snippets.

@Erkened
Erkened / Snippets.strings
Last active September 28, 2017 13:48
Snippets of Swift code I reuse often
/*
// TO APPLY DIFFERENT STRINGS FROM VARIANTS.STRINGS RATHER THAN LOCALIZABLE.STRINGS
var localised:String
{
return Bundle.main.localizedString(forKey:self, value:Bundle.main.localizedString(forKey:self, value:nil, table:nil), table:"variants")
}
// TO CONTROL THE LINE HEIGHT OF AN ATTRIBUTED STRING (LIKE TAB BAR BUTTONS)
let paragraphStyle = NSMutableParagraphStyle()
@Erkened
Erkened / AppDelegate.swift
Last active February 22, 2017 10:44
How to programmatically create the initial view controller, window etc. Swift 3.0
//
// AppDelegate.swift
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {