Created
July 14, 2014 13:07
-
-
Save ikuwow/73fe6c1a9fc0c129a298 to your computer and use it in GitHub Desktop.
alertの出し方メモ ref: http://qiita.com/ikuwow/items/d1b2d1a3b8f2167398fb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var alert = UIAlertView() | |
alert.title = "title" | |
alert.message = "message" | |
alert.addButtonWithTitle("OK") | |
alert.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment