私のアプリは、次のように1つのUIActionSheetを呼び出すだけです。
UIActionSheet *dataCopySheet = [[UIActionSheet alloc] initWithTitle:@"Copy Element Information" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil otherButtonTitles:@"Name", @"Melting Point", @"Boiling Point", @"Atomic Mass", @"Density", @"Discovery Info", @"Save Image", nil];
[dataCopySheet showInView:detailView];
何らかの理由で、これから2つのUIActionSheetsが表示されます(一方が他方の上に表示されます)。私は何か間違ったことをしていますか?