Skip to content

Instantly share code, notes, and snippets.

@b3ll
Created October 14, 2013 23:08
Show Gist options
  • Save b3ll/6983791 to your computer and use it in GitHub Desktop.
Save b3ll/6983791 to your computer and use it in GitHub Desktop.
Don't look up inexistent fonts with CTFontCreateWithName
NSDate *date = [NSDate date];
CTFontRef font = CTFontCreateWithName((__bridge CFStringRef)@"DOGE_NOT_APPROVE", 12, NULL);
NSDictionary *attributes = @{(__bridge id)kCTFontAttributeName: (__bridge_transfer id)font};
NSAttributedString *string = [[NSAttributedString alloc] initWithString:@"broked" attributes:attributes];
NSLog(@"%f %@", [date timeIntervalSinceNow], string);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment