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
/* | |
// 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() |
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
// | |
// AppDelegate.swift | |
// | |
import UIKit | |
@UIApplicationMain | |
class AppDelegate: UIResponder, UIApplicationDelegate { |
NewerOlder