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
NSArray *fontFamilyNames = [UIFont familyNames]; | |
for (NSString *familyName in fontFamilyNames) | |
{ | |
NSLog(@"Font Family Name: %@", familyName); | |
NSArray *names = [UIFont fontNamesForFamilyName:familyName]; | |
NSLog(@"Font Names:\n %@", names); | |
} |
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
// | |
// ApplicationContext.h | |
// | |
// Created by Michał Banasiak on 22.07.2013. | |
// Copyright (c) 2013 Michał Banasiak. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
@interface ApplicationContext : NSObject |
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
platform :ios, '6.0' | |
inhibit_all_warnings! | |
pod 'ObjectiveSugar' | |
pod 'MBLogging', :git => 'https://github.com/bananita/MBLogging.git', :tag => '0.1.0' | |
target :tests, :exclusive => true do | |
pod 'OCMock' | |
end |
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
gem "cocoapods", "~> 0.19.1" |
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
# OS X temporary files | |
.DS_Store | |
*.swp | |
*.lock | |
profile | |
# Compiled classes | |
*class | |
*dex |
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
# OS X temporary files | |
.DS_Store | |
*.swp | |
*.lock | |
profile | |
# XCode user data | |
xcuserdata | |
# Cocoapods |
NewerOlder