2015-07-15 6 views

ответ

1

В случае, если кто-то борется с этим, вот особенность, которую я нашел, который будет активировать:

let descriptor = UIFont.systemFontOfSize(24.0, weight: UIFontWeightLight).fontDescriptor() 
let adjusted = descriptor.fontDescriptorByAddingAttributes(
    [ 
     UIFontDescriptorFeatureSettingsAttribute: [ 
      [ 
       UIFontFeatureTypeIdentifierKey: kCaseSensitiveLayoutType, 
       UIFontFeatureSelectorIdentifierKey: kCaseSensitiveLayoutOnSelector 
      ] 
     ] 
    ] 
) 
return UIFont(descriptor: adjusted, size: 24.0)