技術をかじる猫

適当に気になった技術や言語、思ったこと考えた事など。

Cocoa

iPhone のステータスバーを消す

AppDelegate のエントリ位にさくっと。 [[UIApplication sharedApplication] setStatusBarHidden:YES];

iPhone でアラート出す。

といってもこれだけ。 - (void)alertView:(UIAlertView*)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { /* 何かの処理 */ [alertView release]; } - (IBAction) selectTimeTrial { UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"…

iPhone から AppStore の検索URLにリンクする

通常、 Skype とかのダウンロードサイトを開くときは、以下の手順を踏む。 PC で iTunes 起動して、商品を検索(ここでは skype) 商品名を右クリックして、「iTunes store URL をコピー」を選択。 「http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewS…

iPhone で画面イメージを取得する

前回と似たネタ。 #import <QuartzCore/QuartzCore.h> - (UIImage*) buildImageFrom: (UIView*)view { UIGraphicsBeginImageContext(view .bounds.size); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage* viewImage = UIGraphicsGetImageFromCurrentImageConte</quartzcore/quartzcore.h>…

iPhone で画面イメージを取得する

何の事は無いこれだけ。 [UIImage imageWithCGImage:UIGetScreenImage()]; かなり地獄を見た。