Skip to content

Instantly share code, notes, and snippets.

@zmcartor
Created May 20, 2013 22:44
Show Gist options
  • Save zmcartor/5616186 to your computer and use it in GitHub Desktop.
Save zmcartor/5616186 to your computer and use it in GitHub Desktop.
Quickest iOS app ever! :)
class AppDelegate
def application(application, didFinishLaunchingWithOptions:launchOptions)
alert = UIAlertView.alloc.initWithTitle("Oh yeah!", message:"OHHAI!", delegate:nil, cancelButtonTitle:"OK", otherButtonTitles:nil)
alert.show
true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment