I hereby claim:
- I am plougy on github.
- I am aymeric (https://keybase.io/aymeric) on keybase.
- I have a public key ASAZZ0NRBPj9d9prhgFJIoDHrYmY7mwK9fLBNMEb8ezm1go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| NSArray *familyNames = [[NSArray alloc] initWithArray:[UIFont familyNames]]; | |
| NSArray *fontNames; | |
| NSInteger indFamily, indFont; | |
| for (indFamily=0; indFamily<[familyNames count]; ++indFamily) | |
| { | |
| //NSLog(@"Family name: %@", [familyNames objectAtIndex:indFamily]); | |
| fontNames = [[NSArray alloc] initWithArray:[UIFont fontNamesForFamilyName:[familyNames objectAtIndex:indFamily]]]; | |
| for (indFont=0; indFont<[fontNames count]; ++indFont) | |
| { | |
| NSLog(@"%@", [fontNames objectAtIndex:indFont]); |
| # Mac OS X | |
| *.DS_Store | |
| # Xcode | |
| *.pbxuser | |
| *.mode1v3 | |
| *.mode2v3 | |
| *.perspectivev3 | |
| *.xcuserstate | |
| *.xccheckout |
| buildNumber=$(/usr/libexec/PlistBuddy -c "Print CFBundleVersion" "${PROJECT_DIR}/${INFOPLIST_FILE}") | |
| buildNumber=$(($buildNumber + 1)) | |
| /usr/libexec/PlistBuddy -c "Set :CFBundleVersion $buildNumber" "${PROJECT_DIR}/${INFOPLIST_FILE}" |
| // | |
| // Prefix header for all source files | |
| // | |
| #import <Availability.h> | |
| #ifndef __IPHONE_5_0 | |
| #warning "This project uses features only available in iOS SDK 5.0 and later." | |
| #endif |