こんにちは、Xcode と iOS でのプログラミングは初めてです。アクションシートとアラートに問題があり、2 回押す必要があります。また、「スーパービューによってクリップされたアクションシートを提示しています」と述べています。一部のコントロールは、タッチに反応しない場合があります。iPhone では、-[UIActionSheet showInView:] の代わりに -[UIActionSheet showFromTabBar:] または -[UIActionSheet showFromToolbar:] を試してください。
{
UIActionSheet *actionSheet = [[UIActionSheet alloc]
initWithTitle:@"¿?" delegate:self cancelButtonTitle:@"No" destructiveButtonTitle:@"Send" otherButtonTitles:nil];
[actionSheet showInView:self.view];
}
どんな助けでも感謝します!