UIKit/ダイアログとアクションシート
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(UIKit/ダイアログとアクションシート);
*目次 [#h905940d]
#contents
*関連ページ [#f0afaecd]
-[[UIKit]]
*参考情報 [#w0037202]
*ダイアログを表示する [#h0b16a92]
-iOS 9以降UIAlertViewが非推奨。UIAlertControllerを使用す...
#pre{{
let alertConroller = UIAlertController(
title: "タイトル",
message: "メッセージ",
preferredStyle: UIAlertControllerStyle.Alert
)
alertConroller.addAction(UIAlertAction(title:"OK"...
presentViewController(alertConroller, animated: t...
}}
終了行:
&tag(UIKit/ダイアログとアクションシート);
*目次 [#h905940d]
#contents
*関連ページ [#f0afaecd]
-[[UIKit]]
*参考情報 [#w0037202]
*ダイアログを表示する [#h0b16a92]
-iOS 9以降UIAlertViewが非推奨。UIAlertControllerを使用す...
#pre{{
let alertConroller = UIAlertController(
title: "タイトル",
message: "メッセージ",
preferredStyle: UIAlertControllerStyle.Alert
)
alertConroller.addAction(UIAlertAction(title:"OK"...
presentViewController(alertConroller, animated: t...
}}
ページ名: