先日ActionSheetの使い方を載せましたがちょっと下のiBooksみたいな画面を表示する場合はUIPopoverControllerを使います。 - (IBAction) tapAction:(id)sender { // 表示するViewController SelectViewController *svc = [[[SelectViewController alloc] init] autorelease]; // Popoverの領域の大きさを設定 svc.contentSizeForViewInPopover = svc.view.frame.size; svc.delegate = self; // Popoverのインスタンス生成 UIPopoverController *popover = [[UIPopoverController alloc] initWithCo