天天看點

iOS_TTF 字型自定義

iOS自定義字型(非中文字型自定義)

1.下載下傳一個(.ttf)字型庫,導入工程

iOS_TTF 字型自定義

2.在工程的(.plist)檔案添加 “Fonts provided by application”

iOS_TTF 字型自定義

3.代碼設定

cell.textLabel.font = [UIFont fontWithName:[UIFont fontNamesForFamilyName:[UIFont familyNames][indexPath.section]][indexPath.row] size:[UIFont systemFontSize]];

iOS_TTF 字型自定義