使用Cocoa Touch实现模态警报视图的最佳实践?

时间:2008-12-06 21:44:53

标签: iphone cocoa-touch

有没有人有任何最佳做法,提示&关于如何使用Cocoa Touch创建模态警报视图的技巧或建议?

我觉得有办法让这项艰巨的任务变得微不足道或者至少更容易。

3 个答案:

答案 0 :(得分:13)

您可以使用以下内容:

void AlertWithMessage(NSString *message)
{
/* open an alert with an OK button */
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Name of the Application" 
                                message:message
                                delegate:nil 
                                cancelButtonTitle:@"OK" 
                                otherButtonTitles: nil];
[alert show];
[alert release];
}

答案 1 :(得分:1)

我只是使用UIAlertView来显示模态警报。你在寻找什么附加功能?

答案 2 :(得分:1)

查看Apple的UICatalog示例代码。它显示了手机上警报和表格的使用情况。