Reputation: 39
so I need to use custom font for my project the font is AgencyFB Bold the so what i did is
and the properties to and do not copy The problem is that the font stopped showing in the storyboard editor i get it to work once after restarting Visual Studio a few times ,but since then i cannot get it to work it just does not appear in the custom fonts. I have tried with re-importing the file, reinstalled Visual Studio, Confirmed that i have entered the correct name of the font in the info.plist with the extension and it's still the same. Can someone please help me i'm stuck at this for whole day already. Thank you in advance!
Upvotes: 2
Views: 394
Reputation: 31
Right Click and Open the Xib or storyboard file in Source Code Editor, search the control and specify the font manually.
Eg:
fontDescription key="fontDescription" name="OpenSans-Bold" family="Open Sans" pointSize="32"
Upvotes: 0
Reputation: 14475
It is normal issue online, The best solution is using custom font in code.
You can also file this in Bugzilla.
Refer to
Using Custom Fonts in the Storyboard
Custom Font not showing in Xamarin Storyboard
Xamarin iOS Using a Custom Font
Upvotes: 0