UIAlertView is not showing. What am I doing wrong?
- by Josh Brown
Here is the code: 
-(IBAction)signUpBtnPressed:(id)sender
{
 UIAlertView *alert = [
        [UIAlertView alloc]
        initWithTitle:@"k"
        message:@"Thanks for Signing up!"
        delegate:self
        cancelButtonTitle:@"Continue..."
        otherButtonTitles:nil
        ];
 [alert show];
 [alert release];
}
I also have my Sign Up button attached to this action in my view.