可可触摸 - 对话框?

时间:2010-07-12 17:12:12

标签: iphone cocoa-touch

如何在可可触摸中获得一个简单的基本对话框。看起来如此简单,但我可以弄明白......

谢谢!

3 个答案:

答案 0 :(得分:4)

你想要UIAlertView课程。例如:

UIAlertView *myAlert = [[UIAlertView alloc] initWithTitle:@"Something happened" 
     message:@"And here is some more information about what it is."
          delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[myAlert show];
[myAlert release];

答案 1 :(得分:0)

使用Interface Builder创建NS Window。在你的appdelegate中,打开窗口。

答案 2 :(得分:0)

另一个选项是CFUserNotification。 UIAlertView的优势在于它不需要您链接到UIKit。