ios - Importing external fonts to iPhone application -
this question has answer here:
- custom fonts in ios 7 8 answers
how can import external arabic , english fonts iphone application ?
for importing custom fonts in ios app
- add
.ttfor.otffont downloaded in application. - modify
plistfile i.e.application-info.plistfile. - add key "fonts provided application" in new row.
- and add each
.ttfor.otffile (of font) each line.

and in label or textfield
yourlabel.font = [uifont fontwithname:@"your_font" size:15];
Comments
Post a Comment