Skip to content

Instantly share code, notes, and snippets.

@fannheyward
Created January 10, 2014 16:12
Show Gist options
  • Save fannheyward/8357184 to your computer and use it in GitHub Desktop.
Save fannheyward/8357184 to your computer and use it in GitHub Desktop.
NSArray *array = [[NSUserDefaults standardUserDefaults] valueForKey:@"fontURLs"];
NSMutableArray *fontURLs = [NSMutableArray arrayWithArray:array];
for (NSString *urlString in fontURLs) {
NSURL *url = [NSURL URLWithString:urlString];
CTFontManagerRegisterFontsForURL((__bridge CFURLRef)url, kCTFontManagerScopeProcess, nil);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment