Skip to content

Instantly share code, notes, and snippets.

View carrchr's full-sized avatar

Chris Carr carrchr

View GitHub Profile
@carrchr
carrchr / Example.swift
Created May 31, 2016 01:51 — forked from beccadax/Example.swift
Elegant handling of localizable strings in Swift.
let color = "blue"
let num = 42
localized("Colorless green ideas sleep furiously.")
localized("Colorless \(color) ideas sleep furiously.")
localized("\(num.formatted("%05d")) colorless green ideas sleep furiously.")
UIButton *bottomButton = [UIButton newAutoLayoutView];
[bottomButton setTitle:@"OKAY" forState:UIControlStateNormal];
[bottomButton setTitleColor:[UIColor colorWithHexString:@"#282828"] forState:UIControlStateNormal];
bottomButton.titleLabel.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:15.0f];
bottomButton.layer.borderWidth = 1.0f;
bottomButton.layer.borderColor = [[UIColor blackColor] CGColor];
self.bottomButton = bottomButton;
[self.overlay addSubview:bottomButton];
- (void)updateConstraints