- [不具合] Googleツールバーが、MacのFirefoxでなんかおかしい件の対処法 | 9bic blog
http://blog.9bic.com/category/other/2010/07/googlemacfirefox.html
2010年9月11日土曜日
気になった記事をピックアップ
気になった記事をピックアップ
- [不具合] Googleツールバーが、MacのFirefoxでなんかおかしい件の対処法 | 9bic blog
[google, mac, firefox, web, trouble, toolbar]
http://blog.9bic.com/category/other/2010/07/googlemacfirefox.html
2010年9月6日月曜日
気になった記事をピックアップ
- UIViewでのアニメーションiOS4.0対応版 - Meltdown Countdown
[iphone, ios, ブロック]
http://d.hatena.ne.jp/marutanm/20100629/p1 - 有料iPhoneアプリの無料版を安易に出してはいけない|中村智武のCTO記
[iphone, blog, 記事, セールスノウハウ]
http://ameblo.jp/tomotaken/entry-10640037399.html
気になった記事をピックアップ
- UIViewでのアニメーションiOS4.0対応版 - Meltdown Countdown
[iphone, ios, ブロック]
http://d.hatena.ne.jp/marutanm/20100629/p1 - 有料iPhoneアプリの無料版を安易に出してはいけない|中村智武のCTO記
[iphone, blog, 記事, セールスノウハウ]
http://ameblo.jp/tomotaken/entry-10640037399.html
2010年9月5日日曜日
気になった記事をピックアップ
- AutoCADによる楽しい数学
[追跡曲線]
http://www.takayaiwamoto.com/Pursuit_Curves/ja_Pursuit_Curves.html
気になった記事をピックアップ
- AutoCADによる楽しい数学
[追跡曲線]
http://www.takayaiwamoto.com/Pursuit_Curves/ja_Pursuit_Curves.html
2010年9月4日土曜日
気になった記事をピックアップ
- Evolution of Olympic Pictograms-1964 to 2012 | Creative Repository
[design, icons, teaching]
http://creativerepository.com/2010/01/14/evolution-of-olympic-pictograms-1964-to-2012/ - デザインの参考になる1964年から2012年までのオリンピックのピクトグラム - GIGAZINE
[design, photo, blog, ピクトグラム]
http://gigazine.net/index.php?/news/comments/20100903_olympic_pictograms/ - UNITY: Game Development Toolゲームエンジン
[3d, development, games, programming, game, software, iphone, mac, ゲームエンジン]
http://unity3d.com/
気になった記事をピックアップ
- Evolution of Olympic Pictograms-1964 to 2012 | Creative Repository
[design, icons, teaching]
http://creativerepository.com/2010/01/14/evolution-of-olympic-pictograms-1964-to-2012/ - デザインの参考になる1964年から2012年までのオリンピックのピクトグラム - GIGAZINE
[design, photo, blog, ピクトグラム]
http://gigazine.net/index.php?/news/comments/20100903_olympic_pictograms/ - UNITY: Game Development Toolゲームエンジン
[3d, development, games, programming, game, software, iphone, mac, ゲームエンジン]
http://unity3d.com/
2010年9月3日金曜日
気になった記事をピックアップ
- 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/
気になった記事をピックアップ
- 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/
登録:
投稿 (Atom)
[google, mac, firefox, web, trouble, toolbar]