我认为您的搜索不够理想。How to add CUSTOM fonts:-Steps:- 1. Add your custom font files into your project using XCode as a resource 2. Add a key to your info.plist file called "Fonts provided by application". 3. Make this key an array 4. For each font you have, enter the full name of your font file (including the extension) as items to theUIAppFonts array 5. Save info.plist 6. Now call UIFont *fontCustom = [UIFont fontWithName:@"CustomFontName" size:12]; to get the custom fonts.注意:-确保字体在您的副本捆绑资源中。例如:-如果要Nexa Light在应用程序中使用“ ”字体,则将“ Nexa Light.otf”添加到项目中并以这种方式调用。UIFont *fontCustom = [UIFont fontWithName:@"Nexa Light" size:14];lblName.font = fontCustom;