UIViewController に UITabbar を作成しました。次に、UIActionSheetを追加しましたが、アクションシートが表示されたときに、「キャンセル」ボタンの上部をクリックすると機能しますが、「キャンセル」の下部をクリックすると応答がありません。このコードを使用して、アクションシートを追加しました。
actionSheetDelete = [[UIActionSheet alloc] initWithTitle:@"Do you want to continue?" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:@"Delete Item(s)" otherButtonTitles:nil];
actionSheetDelete.actionSheetStyle = UIActionSheetStyleBlackOpaque;
[actionSheetDelete showInView:self.view];
[actionSheetDelete release];
アクションシートをクリックすると、常にコンソールにこのアラームが表示されます:
Presenting action sheet clipped by its superview. Some controls might not respond to touches. On iPhone try -[UIActionSheet showFromTabBar:] or -[UIActionSheet showFromToolbar:] instead of -[UIActionSheet showInView:].
何か提案はありますか?前もって感謝します