Cocoa
AppDelegate のエントリ位にさくっと。 [[UIApplication sharedApplication] setStatusBarHidden:YES];
といってもこれだけ。 - (void)alertView:(UIAlertView*)alertView clickedButtonAtIndex:(NSInteger)buttonIndex { /* 何かの処理 */ [alertView release]; } - (IBAction) selectTimeTrial { UIAlertView* alert = [[UIAlertView alloc] initWithTitle:@"…
通常、 Skype とかのダウンロードサイトを開くときは、以下の手順を踏む。 PC で iTunes 起動して、商品を検索(ここでは skype) 商品名を右クリックして、「iTunes store URL をコピー」を選択。 「http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewS…
前回と似たネタ。 #import <QuartzCore/QuartzCore.h> - (UIImage*) buildImageFrom: (UIView*)view { UIGraphicsBeginImageContext(view .bounds.size); [view.layer renderInContext:UIGraphicsGetCurrentContext()]; UIImage* viewImage = UIGraphicsGetImageFromCurrentImageConte</quartzcore/quartzcore.h>…
何の事は無いこれだけ。 [UIImage imageWithCGImage:UIGetScreenImage()]; かなり地獄を見た。