¡@

Home 

2014/10/15 ¤U¤È 10:04:39

iphone Programming Glossary: boldmt

How to change an UILabel/UIFont's letter spacing?

http://stackoverflow.com/questions/2544905/how-to-change-an-uilabel-uifonts-letter-spacing

7 120 69 autorelease totalColors.text NSString stringWithFormat @ d total totalColors.font UIFont fontWithName @ Arial BoldMT size 60 totalColors.textColor UIColor colorWithRed 221 255.0 green 221 255.0 blue 221 255.0 alpha 1.0 totalColors.backgroundColor.. like this void drawRect CGRect rect CGContextRef context UIGraphicsGetCurrentContext CGContextSelectFont context Arial BoldMT 60 kCGEncodingMacRoman CGContextSetCharacterSpacing context 10 CGContextSetTextDrawingMode context kCGTextFill CGContextSetRGBFillColor..

Draw underlined / strikethrough text ( MULTILINE STRING )?

http://stackoverflow.com/questions/2652163/draw-underlined-strikethrough-text-multiline-string

c UIColor blackColor CGColor THE TEXT COLOR OF THE STRING TO BE DRAWN. UIFont fontName UIFont fontWithStyle @ Arial BoldMT andFontSize 13 if FontOverLayUnderLine FontOverLayStrikeThrough NSArray stringsArray textString componentsSeparatedByCharactersInSet..

Customizing UIPickerView (background and spacing)

http://stackoverflow.com/questions/5744996/customizing-uipickerview-background-and-spacing

rectDate date setTransform rotate date setText arrayDates objectAtIndex row date setFont UIFont fontWithName @ Arial BoldMT size 37.0 date setShadowColor UIColor whiteColor date setShadowOffset CGSizeMake 0 1 date setTextAlignment UITextAlignmentCenter.. rectDay day setTransform rotate day setText arrayDays objectAtIndex row day setFont UIFont fontWithName @ Arial BoldMT size 21.0 day setTextColor UIColor colorWithRed 0.35 green 0.35 blue 0.35 alpha 1 day setTextAlignment UITextAlignmentCenter..

UINavigationBar title

http://stackoverflow.com/questions/5928851/uinavigationbar-title

UILabel nav_title UILabel alloc initWithFrame CGRectMake 80 2 220 25 nav_title.font UIFont fontWithName @ Arial BoldMT size 18 nav_title.textColor UIColor whiteColor nav_title.adjustsFontSizeToFitWidth YES nav_title.text title nav_title.backgroundColor.. UILabel nav_title UILabel alloc initWithFrame CGRectMake 80 2 220 25 nav_title.font UIFont fontWithName @ Arial BoldMT size 18 nav_title.textColor UIColor whiteColor nav_title.adjustsFontSizeToFitWidth YES nav_title.text title self.title @..

add annotation to pdf

http://stackoverflow.com/questions/6914906/add-annotation-to-pdf

CGPDFContextCreateWithURL __bridge CFURLRef destURL NULL NULL CGContextSelectFont destPDFContext CourierNewPS BoldMT 12.0 kCGEncodingFontSpecific Copy the first page of the source pdf into the destination pdf CGPDFPageRef pdfPage CGPDFDocumentGetPage..

How to check if a font is available in version of iOS?

http://stackoverflow.com/questions/8529593/how-to-check-if-a-font-is-available-in-version-of-ios

@ Courier New That will produce a list like this Courier New family fonts CourierNewPSMT CourierNewPS BoldMT CourierNewPS BoldItalicMT CourierNewPS ItalicMT The following example code prints a list of each font in every family on..