uifontdescriptor

    0熱度

    1回答

    即使相應的代碼在Swift中工作,我也無法在Objective C中顯示分數。我必須失去一些非常明顯的東西? Swift代碼: override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) //: Playground - noun: a place where people c

    4熱度

    2回答

    我試圖用一個字體系列名稱來獲得大膽面對的iOS UIFont的方法似乎只適用於某些字體。例如: UIFont* font = [UIFont fontWithName:@"TimesNewRomanPS-BoldMT" size:12]; NSLog(@"A: Font name: %@", [font fontName]); // desired method works for Helv

    0熱度

    2回答

    在iOS系統中8,以獲得Helvetica Neue字體在薄的變化下面的代碼將工作 UIFont.systemFontOfSize(50, weight: UIFontWeightThin) 在iOS系統9的系統字體改爲舊金山,所以我不能再這樣繼續下去。我絕對必須在這個應用程序中使用Helvetia,並且無法弄清楚如何設置字體重量。這是我目前使用的代碼。 timeSelectedLabel.f

    0熱度

    1回答

    我有以下代碼: UIFontDescriptor *fd = [UIFont fontWithDescriptor:[[UIFont systemFontOfSize:[UIFont systemFontSize]].fontDescriptor fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitBold|UIFontDescriptorT

    2熱度

    1回答

    iOS 9中新的舊金山字體針對其使用的尺寸進行了優化,方法是調整SF Display和SF Text之間的跟蹤並動態切換。它在WWDC會議#指出804開發者不應該通過嘗試使用舊金山UIFont使用fontWithName來初始化,例如: UIFont *originalFont = [UIFont systemFontOfSize:11]; UIFont *newFont = [UIFont f

    1熱度

    2回答

    我的應用程序只使用系統字體,但我是函數創建它們 - + (UIFont * _Nonnull)systemFontOfSize:(CGFloat)fontSize weight:(CGFloat)weight 我怎麼可以讓系統字體斜體,重量UIFontWeightThin? 我不能使用特定族字體的調用(fontWithName :),因爲我只希望它是系統字體。 謝謝:)