我有一个 UIBarButtonItem,我想在按下它时显示一个 UIAlertView。
我尝试过 IBAction、添加手势等,但没有找到好的解决方案。有任何想法吗?
我试过这个:
-(IBAction)helpButton:(UIBarButtonItem *)sender{
NSString* title;
NSString* message;
NSString* yesButtonText;
NSString* noButtonText;
tutorialAlertView = [[UIAlertView alloc] initWithTitle:title
message:message
delegate:self
cancelButtonTitle:nil
otherButtonTitles:yesButtonText, noButtonText, nil];
tutorialAlertView.delegate = self;
[tutorialAlertView show];
}