How can i specify font bold/italic etc. properties in monotouch?

Actually possible in native library http://www.freetimestudios.com/2010/09/20/ipad-and-ios-4-custom-font-loading/

NSDictionary *fontAttributes =
  [NSDictionary dictionaryWithObjectsAndKeys:
    @"Courier", (NSString *)kCTFontFamilyNameAttribute,
    @"Bold", (NSString *)kCTFontStyleNameAttribute,
    [NSNumber numberWithFloat:16.f], (NSString *)kCTFontSizeAttribute,
    nil];
CTFontDescriptorRef descriptor =
  CTFontDescriptorCreateWithAttributes((CFDictionaryRef)attributes);
CTFontRef font = CTFontCreateWithFontDescriptor(descriptor, 0, NULL);
CFRelease(descriptor);
link|improve this question
Does this other question (stackoverflow.com/questions/4913363/…) help at all? – summea Jan 25 at 18:26
actually not helped for me. i need a bold text for custom fonts – Mesut Arıdoru Jan 25 at 19:26
Have you read through the "Registering Custom Fonts With iOS" section on that link you listed earlier and verified that everything is correctly set with UIAppFonts in the Info.plist? – summea Jan 25 at 19:41
feedback

1 Answer

The MonoTouch / C# code to match your code snippet would look like this:

CTFontDescriptorAttributes fda = new CTFontDescriptorAttributes () {
    FamilyName = "Courier",
    StyleName = "Bold",
    Size = 16.0f
};
CTFontDescriptor fd = new CTFontDescriptor (fda);
CTFont font = new CTFont (fd, 0);
link|improve this answer
thanks a lot but a new problem here. how can i use with uilabel/uibutton etc.. shortly how can i convert ctfont to uifont – Mesut Arıdoru Jan 26 at 8:41
see stackoverflow.com/questions/6714858/… but note that not every attributes will be converted. However that will cover Bold. In C# this should look like UIFont f = UIFont.FromName (font.PostScriptName, 16); – poupou Jan 26 at 12:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.