Skip to content

Instantly share code, notes, and snippets.

//
// NSString+SplitEqually.h
// StringSplitter
//
// Created by Davide Benini on 21/01/16.
// Copyright © 2016 NtNext. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@nutsmuggler
nutsmuggler / gist:1941597
Created February 29, 2012 15:27
Show the available fonts on an iOs app
NSArray *names = [UIFont familyNames];
NSArray *fontFaces;
NSLog(@"Font FamilyNames");
for (NSString *name in names) {
NSLog(@"Font Family:  %@",name);
fontFaces = [UIFont fontNamesForFamilyName:name];
for (NSString *fname in fontFaces) {
NSLog(@"              %@",fname);
}
}