How to use custom font in Xcode attribute builder

Can someone describe the procedure for using custom fonts in the Xcode attribute builder. I was hoping to use a .storybuild file (without using code) to create a UILabel with a custom "Delicious" font. I downloaded the .otf file, added it to the Font book, copied the font file to the project folder in Xcode, added “Fonts provided by the application”, with the font name in -file.plist. But I still don't see the font in the drop-down list of attribute builders. Do I need to do something?

PS: I am using Xcode 4.5.

+4
source share
1 answer

I do not believe that you can get custom fonts to be displayed in the drop-down list in the interface builder. IB shows only fonts available on the target device platform. If you want to use custom fonts, you will need to install them in some code.

http://kgriff.posterous.com/45359635

+3
source

Source: https://habr.com/ru/post/1437089/


All Articles