你好,我是 Xcode 和 iOS 编程的新手。我在操作表和警报中遇到了一些问题,必须按两次才能工作。它还说:“呈现由其超级视图剪辑的操作表”。某些控件可能无法响应触摸。在 iPhone 上尝试 -[UIActionSheet showFromTabBar:] 或 -[UIActionSheet showFromToolbar:] 而不是 -[UIActionSheet showInView:]。
{
UIActionSheet *actionSheet = [[UIActionSheet alloc]
initWithTitle:@"¿?" delegate:self cancelButtonTitle:@"No" destructiveButtonTitle:@"Send" otherButtonTitles:nil];
[actionSheet showInView:self.view];
}
任何帮助将不胜感激谢谢!