I'm trying to add font awesome icons to my tabbed page tabs. I've followed what I believe are the correct steps to be able to configure display font awesome icons for Xamarin.forms applications but for some reason the icons display for the android app but not the iOS app.
I first added the font awesome .ttf files to the android Assets folder and the iOS Resources folder:
Next I updated the Info.plist file for iOS in order to include the .ttf files from Font Awesome:
Then I configured use of the Font Awesome icons in App.xaml:
Finally I added the needed icons to the their tabs:
UIFont.FontNamesForFamilyName
, look at the code at the bottom of my answer here ( stackoverflow.com/a/48191854/4984832 ) and you can temp. add it your Xamarin.iOS project and get your names from the console/debug output. OR use the macOS system app: "Font Book", see my answer here: stackoverflow.com/questions/45768488/… – SushiHangover