アクションシートとはぴょこっと出てくるあれです。
#追加方法
以下をコピペでボタンアクションのところとかにコピペすればokです。
// styleをActionSheetに設定
let alertSheet = UIAlertController(title: "title", message: "message", preferredStyle: UIAlertControllerStyle.ActionSheet)
// 自分の選択肢を生成
let action1 = UIAlertAction(title: "1", style: UIAlertActionStyle.Default, handler: {
(action: UIAlertAction!) in
})
let action2 = UIAlertAction(title: "aka", style: UIAlertActionStyle.Destructive, handler: {
(action: UIAlertAction!) in
})
let action3 = UIAlertAction(title: "cancel", style: UIAlertActionStyle.Cancel, handler: {
(action: UIAlertAction!) in
})
// アクションを追加.
alertSheet.addAction(action1)
alertSheet.addAction(action2)
alertSheet.addAction(action3)
self.presentViewController(alertSheet, animated: true, completion: nil)