Skip to content

Instantly share code, notes, and snippets.

@briandonahue
Created July 1, 2010 19:52
Show Gist options
  • Save briandonahue/460461 to your computer and use it in GitHub Desktop.
Save briandonahue/460461 to your computer and use it in GitHub Desktop.
public class MyViewController: UIViewController{
//DO THIS
UIAlertView alertView; // class level variable
public void ShowAlertView(){
// NOT THIS
// var alertView = new UIAlertView; // This is a local variable
alertView = new UIAlertView();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment