Slide 57
Slide 57 text
alert = UIAlertView.alloc.initWithTitle "Hey, buddy",
message: "Buzz off!",
delegate: nil,
cancelButtonTitle: nil,
otherButtonTitles: nil
alert.show()
App.alert("Hey, buddy", message: "Buzz off!") do |alert|
# You can perform any additional configuration on the
# UIAlertView object here, using the `alert` variable
end
BubbleWrap
Standard Cocoa API (in RubyMotion)