Simple. Its work for me too in xcode6.1.
Try using the steps:
Step 1: Include Fonts in an Xcode Project
Step 2: Make sure they are included in the goal
Step 3: Double check that your fonts are included as resources in your package
Step 4: Include iOS Custom Fonts in Your Application Plan
Step 5: Find the Font Name
for (NSString* family in [UIFont familyNames]) { NSLog(@"%@", family); for (NSString* name in [UIFont fontNamesForFamilyName: family]) { NSLog(@" %@", name); } }
Step 6: Use UIFont and Specify the Font Name
label.font = [UIFont fontWithName:@"Helvetica CY" size:20];
source share