UIAlertView runModal

时间:2011-07-08 14:24:55

标签: ios uialertview uiactionsheet

跟进Where is NSAlert.h in the iOS SDK?

有没有办法从UIAlertView获取NSAlert runModal行为?或者来自UIActionSheet?

我打算只在调试版本中使用,所以我不关心它的外观或是否使用未记录的功能。

修改

NSAlert是OS X SDK的一部分,类似于Win32中的MessageBox。它允许您同步提示用户输入某些内容。这是一个例子:

NSAlert * myAlert=[[NSAlert alloc] init];
[myAlert setMessgeText:@"This is my alert"];
[myAlert addButtonWithTitle:@"button 1"];
[myAlert addButtonWithTitle:@"button 2"];

switch ([myAlert runModal]) {
  case NSAlertFirstButtonReturn:
    //handle first button
    break;
  case NSAlertSecondButtonReturn:
    //handle second button
    break;
}

runModal是一个同步函数,它显示警报并等待用户响应。在内部,它正在运行一个有限版本的消息循环,但就我的应用程序的其余部分而言,世界已经停止;没有消息,没有事件,没有。

2 个答案:

答案 0 :(得分:9)

  

在内部,它正在运行有限版本的消息循环,但就我的应用程序的其余部分而言,世界已经停止

完全按照您的描述进行操作:抛出警报,然后运行事件循环直到警报视图被解除。此代码有效:

UIAlertView *alert = [[UIAlertView alloc]
        initWithTitle:@"O rlly?" message:nil delegate:nil
        cancelButtonTitle:nil otherButtonTitles:@"OK", nil];
[alert show];
NSRunLoop *rl = [NSRunLoop currentRunLoop];
NSDate *d;
while ([alert isVisible]) {
    d = [[NSDate alloc] init];
    [rl runUntilDate:d];
    [d release];
}
[alert release];

答案 1 :(得分:0)

如果您想要这种行为,则必须自己编写。小心,如果您长时间阻止主队列,您的应用程序将被监视。

UIAlertView为您提供模态行为,最终将以您的自定义类的方式运行。您可以考虑使用基于块的包装器来包装UIAlertView,并允许您为按钮操作回调设置块。