2010-02-28から1日間の記事一覧

バグだらけ・イラストレーターCS3なんて捨てちまえ!!

http://homepage1.nifty.com/GOME/STRATEGY/BATTLE/CS3/CS3.htmげっ。。イラレって、こんなにひどかったの? うーん。(汗)

AppleのTimothy D. Cook COO「消費者は、Appleの心であり、魂であり、DNA」と語る

http://www.macotakara.jp/blog/index.php?ID=6931&utm_source=twitterfeed&utm_medium=twitter 冒頭、1991年以降からモバイルデバイスへの移行を進めてきたと説明し、同社は、モバイルデバイス企業だとはっきり答えています。また、ハードとソフトウェアを…

UIViewで、CoreGraphicsで、長方形を書く

iOS

- (void)drawRect:(CGRect)rect { CGContextRef dst_cgcontext = UIGraphicsGetCurrentContext(); CGContextSetRGBStrokeColor( dst_cgcontext, 0xff,0xff,0xff,0xff); // color CGRect rect2 = CGRectMake( x ,y ,w, h); CGContextStrokeRect( dst_cgcontext…

UIView で、文字を描画する

iOS

- (void)drawRect:(CGRect)rect { UIColor *color = [UIColor colorWithRed: 0xff green: 0xff blue: 0xff alpha: 0xff]; [color set]; NSString *string = [[NSString alloc] initWithCString:title]; [string drawAtPoint:CGPointMake(x+2, y+2) withFont:…

アプリのsandboxをURLを取り出す

iOS

http://d.hatena.ne.jp/iphone_dev/20080714/1216003512 iPhoneアプリはアクセスできるファイルが厳密に制限されてます。アクセスできるディレクトリの中で特に重要なのが、アプリケーション自体のバンドル内のDocumentsディレクトリ。NSArray *filePaths = …