Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom Font is not working in iOS 8

Tags:

xcode

ios

I have a custom font included in my project, which worked perfectly fine until I upgraded my Xcode to version 6 with iOS 8 as the base SDK. Now the custom font no longer works if I run the app on iOS 8 simulator or devices, but it still works in my iOS 7 devices. Any suggestions?

like image 451
CodeBrew Avatar asked Sep 20 '14 15:09

CodeBrew


1 Answers

In my case another solution worked. When I added the fonts to the project, they did not get automatically added to the compiled bundle resources. So I had to go 'Targets' -> 'Build Phases' -> 'Copy Bundle Resources' and add all the fonts manually. This did the trick

like image 117
mgm Avatar answered Sep 21 '22 20:09

mgm