tags:

views:

29

answers:

2

hi i am new to ipone. what i need is after running my application if i click menu button it will display about, help just like alert message by selecting about i will open the webpage and by selecting the help it will display some text hoe can i done this.

+2  A: 

write code to add UIAlertview to your menu button click and implement delegate method of UIAlertview.

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{

//write your code here

}

priyanka
+1  A: 
            UIAlertView *slpp=[[UIAlertView alloc] initWithTitle:@"Wrong!" message:@" your message" delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];

it's helpfull for u

heyram