Skip to content

Instantly share code, notes, and snippets.

@BrianTheCoder
Created March 9, 2014 09:06
Show Gist options
  • Save BrianTheCoder/9444870 to your computer and use it in GitHub Desktop.
Save BrianTheCoder/9444870 to your computer and use it in GitHub Desktop.
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
@alert = UIAlertView.alloc.initWithTitle("Hello", {
message: "Hello, Rubymotion",
delegate: nil,
cancelButtonTitle: "OK",
otherButtonTitles: nil
})
@alert.show
puts "Hello from the console"
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment