Klimi's new dotfiles with stow.
Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
# -*- mode: snippet -*-
|
|
# name: uialertController
|
|
# key: uialertController
|
|
# --
|
|
let alert =
|
|
UIAlertController(title: $1,
|
|
message: $2,
|
|
preferredStyle: .alert)
|
|
alert.addAction(UIAlertAction(title: "",
|
|
style: .default,
|
|
handler: { (action) in
|
|
alert.dismiss(animated: true, completion: {
|
|
$0
|
|
})
|
|
}))
|
|
|
|
self.presentViewController(alert, animated: true, completion: nil)
|