Quote:
Originally Posted by WiiFan2012
I am looking for a simple UIAlertView which opens on a button click and has an option to link to the ad-less version of my app.
Thanks for the code.
|
code for show alert when click the button
-(IBAction)showalert
{
alertsuccess=[[UIAlertView alloc]initWithTitle:@" alert! " message:@"alert showed successfully" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alertsuccess show];
[alertsuccess release];
}