共用方式為


UIAlertController.Create(String, String, UIAlertControllerStyle) 方法

定義

UIAlertController建立 物件,向使用者顯示包含 titlemessage 、 和 UIAlertControllerStyle 慣用樣式的警示,然後傳回該 UIAlertController 物件。

[Foundation.Export("alertControllerWithTitle:message:preferredStyle:")]
public static UIKit.UIAlertController Create (string title, string message, UIKit.UIAlertControllerStyle preferredStyle);
static member Create : string * string * UIKit.UIAlertControllerStyle -> UIKit.UIAlertController

參數

title
String

警示的標題

這個參數可以是 null

message
String

要顯示警示的訊息,這是選擇性的。

這個參數可以是 null

preferredStyle
UIAlertControllerStyle

警示所需的樣式。

傳回

您可以自訂之 UIAlertController 的新實例。

屬性

備註

UIAlertController如需如何使用檔的範例,請參閱檔。

適用於