有没有人有任何最佳做法,提示&关于如何使用Cocoa Touch创建模态警报视图的技巧或建议?
我觉得有办法让这项艰巨的任务变得微不足道或者至少更容易。
答案 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示例代码。它显示了手机上警报和表格的使用情况。