『iPhone』のプログラミングしていたら… 『UIActionSheet』の所でチョットはまった…。 最終的に分かった事は、プロジェクトを 『Windows-based Application』で作ったのが原因らしい…。 『View-based Application』で作った場合以下のプログラム動作する。 - (IBAction)pushDoButton:(id)sender { UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"やるの?" delegate:self cancelButtonTitle:@"やめる" destructiveButtonTitle:@"やる" otherButtonTitles:nil]; [actionSheet showInView:self.view]; [act

