iOS警报(UIAlertView)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS警报(UIAlertView)相关的知识,希望对你有一定的参考价值。

  1. /*
  2. Simple alert for ios applications
  3. */
  4.  
  5. // Alloc and init the alert object
  6. UIAlertView *alert = [[UIAlertView alloc]
  7.  
  8. // Alert window title
  9. initWithTitle: NSLocalizedString(@"",nil)
  10.  
  11. // Message that will be displayed
  12. message: NSLocalizedString(@"",nil)
  13.  
  14. // UIAlertView delegate (No protocol conformance required)
  15. delegate: self
  16.  
  17. // Text for the main button
  18. cancelButtonTitle: NSLocalizedString(@"No",nil)
  19.  
  20. // A second button or just nil for none
  21. otherButtonTitles: NSLocalizedString(@"Yes",nil), nil];
  22.  
  23. // Display the alert
  24. [alert show];
  25.  
  26. // Release the object
  27. [alert release];

以上是关于iOS警报(UIAlertView)的主要内容,如果未能解决你的问题,请参考以下文章

关于 UIAlert 跳转到一个 xib

如何在 macOS 上的 Cocoa 中显示警报弹出窗口?

iOS警报(UIAlertView)

应用程序运行时,iOS 推送通知显示为 UIAlert

如何在 iOS 8 上显示没有按钮的 UIAlertView?

当应用程序在后台运行时,iOS 会显示 UIAlert