- CoreText: set text font and alignment to CFAttributedString | foobarpig.comセンタリング、フォントの変更したかったので、この記事に助けられました。
 [coretext, CFAttributedString, font, apple, iphone]
 http://foobarpig.com/iphone/coretext-set-text-font-and-alignment-to-cfattributedstring.html
- Text Layout With Core Textものすごく役にたちます。
 [coretext, Cocoa, text, tutorial, osx, macosx, programming, development, font, 文字列表示]
 http://www.slideshare.net/DJune/text-layout-with-core-text
- 無為空間 | iPhoneの文字座標NSView等、Macの座標系は左下基点。 それに対し、UIView等、iPhoneの座標系は左上基点。
 [iphone, 座標]
 http://idlysphere.blog66.fc2.com/blog-entry-153.html
- カスタムフォントの組み込み - iPhone / iPod touch プログラミングメモ - iPhoneアプリ開発グループ
 [iphone, font, tips, programming, development, フォント, typography, iphone-dev]
 http://iphone-dev.g.hatena.ne.jp/ktakayama/20081226/1230261858
- Core Textとは - goo Wikipedia (ウィキペディア)// フォントの準備 CTFontRef font = CTFontCreateWithName(CFSTR("Times"), 48, NULL); // 属性付き文字列の生成 CFStringRef keys[] = { kCTFontAttributeName }; CFTypeRef values[] = { font }; CFDictionaryRef attr = CFDictionaryCreate(NULL, (const void **)&keys, (const void **)&values, sizeof(keys) / sizeof(keys[0]), &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks); CFAttributedStringRef attrString = CFAttributedStringCreate(NULL, CFSTR("Hello, World!"), attr); CFRelease(attr); // 文字列の描画 CTLineRef line = CTLineCreateWithAttributedString(attrString); CGContextSetTextMatrix(context, CGAffineTransformIdentity); CGContextSetTextPosition(context, 10, 20); CTLineDraw(line, context); // 後片付け CFRelease(line); CFRelease(attrString); CFRelease(font);
 [ios, coretext, apple, development, フォント]
 http://wpedia.goo.ne.jp/wiki/Core_Text
- iPhone OS 3.2でサポートされたカスタムフォントを試す | calmscape: //ソフトウェア開発部TrueTypeベースのOpenType (拡張子 .ttf)
 [ios, apple, iphone, development, フォント, fonts, font]
 http://develop.calmscape.net/dev/135/
2010年9月3日金曜日
気になった記事をピックアップ
登録:
コメントの投稿 (Atom)
 
0 件のコメント:
コメントを投稿