For some reason, I can't seem to get the font I want displayed on the simulator.
foodfinderLabel.font = UIFont (name: "HelveticaNeue-Bold", size: 50)
The above code returns what you would expect it to.
However, when I try to execute the above code but with this font: 'Toppan Bunkyu Midashi Gothic Extrabold' Like this...
foodfinderLabel.font = UIFont (name: "ToppanBunkyuMidashiGothic", size: 50)
The code does not display the correct font.
How can I get this to run? Probably a simple problem, but I've had no luck. Having trouble with other fonts, too.